mirror of
https://github.com/bitwarden/server.git
synced 2025-04-04 12:40:22 -05:00
Fix PayPal to Stripe credit truncation bug (#5561)
This commit is contained in:
parent
9c16127bd4
commit
0ca1b319fd
@ -32,7 +32,7 @@ public class PremiumUserBillingService(
|
||||
var customer = await subscriberService.GetCustomer(user);
|
||||
|
||||
// Negative credit represents a balance and all Stripe denomination is in cents.
|
||||
var credit = (long)amount * -100;
|
||||
var credit = (long)(amount * -100);
|
||||
|
||||
if (customer == null)
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user