From 46ff82b84a1c2168fc2dfa0664956d2b6ba059af Mon Sep 17 00:00:00 2001 From: Jonas Hendrickx Date: Tue, 18 Mar 2025 12:09:05 +0100 Subject: [PATCH] WIP --- src/Core/Services/Implementations/StripePaymentService.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Core/Services/Implementations/StripePaymentService.cs b/src/Core/Services/Implementations/StripePaymentService.cs index f4bacca8a7..3da1bc1ef3 100644 --- a/src/Core/Services/Implementations/StripePaymentService.cs +++ b/src/Core/Services/Implementations/StripePaymentService.cs @@ -817,8 +817,7 @@ public class StripePaymentService : IPaymentService }); } - if (!string.IsNullOrEmpty(subscriber.GatewaySubscriptionId) && - customer.Subscriptions.Any(sub => sub.Id == subscriber.GatewaySubscriptionId)) + if (!string.IsNullOrEmpty(subscriber.GatewaySubscriptionId)) { var subscription = await _stripeAdapter.SubscriptionGetAsync(subscriber.GatewaySubscriptionId);