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