Fix warnings

This commit is contained in:
Kukks 2020-09-28 08:41:55 +02:00 committed by rockstardev
parent c07952629c
commit 713a1f03e9

View file

@ -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);
}
}));