mirror of
https://github.com/bitwarden/server.git
synced 2025-04-04 20:50:21 -05:00
Updated null checks to also check for empty string or whitespace (#5272)
(cherry picked from commit 04402c1316328c1c0b72a344a95dec245cb2b00e)
This commit is contained in:
parent
1cc45d1abe
commit
129c6b7bfc
@ -2081,7 +2081,7 @@ public class StripePaymentService : IPaymentService
|
||||
];
|
||||
}
|
||||
|
||||
if (gatewayCustomerId != null)
|
||||
if (!string.IsNullOrWhiteSpace(gatewayCustomerId))
|
||||
{
|
||||
var gatewayCustomer = await _stripeAdapter.CustomerGetAsync(gatewayCustomerId);
|
||||
|
||||
@ -2091,7 +2091,7 @@ public class StripePaymentService : IPaymentService
|
||||
}
|
||||
}
|
||||
|
||||
if (gatewaySubscriptionId != null)
|
||||
if (!string.IsNullOrWhiteSpace(gatewaySubscriptionId))
|
||||
{
|
||||
var gatewaySubscription = await _stripeAdapter.SubscriptionGetAsync(gatewaySubscriptionId);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user