mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 22:44:29 +01:00
Fix issue with new Invoice API ignoring internal tags
This commit is contained in:
@@ -175,6 +175,8 @@ namespace BTCPayServer.Controllers
|
|||||||
excludeFilter = PaymentFilter.Where(p => !supportedTransactionCurrencies.Contains(p));
|
excludeFilter = PaymentFilter.Where(p => !supportedTransactionCurrencies.Contains(p));
|
||||||
}
|
}
|
||||||
entity.PaymentTolerance = invoice.Checkout.PaymentTolerance ?? storeBlob.PaymentTolerance;
|
entity.PaymentTolerance = invoice.Checkout.PaymentTolerance ?? storeBlob.PaymentTolerance;
|
||||||
|
if (additionalTags != null)
|
||||||
|
entity.InternalTags.AddRange(additionalTags);
|
||||||
return await CreateInvoiceCoreRaw(entity, store, excludeFilter, cancellationToken);
|
return await CreateInvoiceCoreRaw(entity, store, excludeFilter, cancellationToken);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user