From 4187e0f94c6f50fe06689a7d603b3db1fd491cc2 Mon Sep 17 00:00:00 2001 From: rockstardev Date: Mon, 5 Oct 2020 16:23:21 -0500 Subject: [PATCH] Mark Shopify orders paid on invoice payment confirmed --- .../Services/Shopify/ShopifyOrderMarkerHostedService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BTCPayServer/Services/Shopify/ShopifyOrderMarkerHostedService.cs b/BTCPayServer/Services/Shopify/ShopifyOrderMarkerHostedService.cs index 4f2ccca2c..63a2a7c9f 100644 --- a/BTCPayServer/Services/Shopify/ShopifyOrderMarkerHostedService.cs +++ b/BTCPayServer/Services/Shopify/ShopifyOrderMarkerHostedService.cs @@ -41,7 +41,7 @@ namespace BTCPayServer.Services.Shopify { if (evt is InvoiceEvent invoiceEvent && !new[] { - InvoiceEvent.Created, InvoiceEvent.Confirmed, InvoiceEvent.ExpiredPaidPartial, + InvoiceEvent.Created, InvoiceEvent.ExpiredPaidPartial, InvoiceEvent.ReceivedPayment, InvoiceEvent.PaidInFull }.Contains(invoiceEvent.Name)) {