mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -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);
|
var customer = await subscriberService.GetCustomer(user);
|
||||||
|
|
||||||
// Negative credit represents a balance and all Stripe denomination is in cents.
|
// 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)
|
if (customer == null)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user