mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 06:21:44 +01:00
Fix warnings
This commit is contained in:
parent
c07952629c
commit
713a1f03e9
1 changed files with 3 additions and 3 deletions
|
@ -331,17 +331,17 @@ namespace BTCPayServer.HostedServices
|
|||
e.Name == InvoiceEvent.Completed ||
|
||||
e.Name == InvoiceEvent.ExpiredPaidPartial
|
||||
)
|
||||
Notify(invoice, e, false);
|
||||
_ = Notify(invoice, e, false);
|
||||
}
|
||||
|
||||
if (e.Name == InvoiceEvent.Confirmed)
|
||||
{
|
||||
Notify(invoice, e, false);
|
||||
_ = Notify(invoice, e, false);
|
||||
}
|
||||
|
||||
if (invoice.ExtendedNotifications)
|
||||
{
|
||||
Notify(invoice, e, true);
|
||||
_ = Notify(invoice, e, true);
|
||||
}
|
||||
}));
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue