From 313dbc8616626a776e5d2b94683fd720353c16ec Mon Sep 17 00:00:00 2001 From: jrmccannon Date: Mon, 24 Mar 2025 15:56:04 -0500 Subject: [PATCH] Corrected double negation. --- .../InviteUsers/InviteOrganizationUsersCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Core/AdminConsole/OrganizationFeatures/OrganizationUsers/InviteUsers/InviteOrganizationUsersCommand.cs b/src/Core/AdminConsole/OrganizationFeatures/OrganizationUsers/InviteUsers/InviteOrganizationUsersCommand.cs index 5f34a63c99..ca3cce8f7d 100644 --- a/src/Core/AdminConsole/OrganizationFeatures/OrganizationUsers/InviteUsers/InviteOrganizationUsersCommand.cs +++ b/src/Core/AdminConsole/OrganizationFeatures/OrganizationUsers/InviteUsers/InviteOrganizationUsersCommand.cs @@ -158,7 +158,7 @@ public class InviteOrganizationUsersCommand(IEventService eventService, // When reverting seats, we have to tell payments service that the seats are going back down by what we attempted to add. // However, this might lead to a problem if we don't actually update stripe but throw any ways. // stripe could not be updated, and then we would decrement the number of seats in stripe accidentally. - var seatsToRemove = -validatedResult.Value.PasswordManagerSubscriptionUpdate.SeatsRequiredToAdd; + var seatsToRemove = validatedResult.Value.PasswordManagerSubscriptionUpdate.SeatsRequiredToAdd; await paymentService.AdjustSeatsAsync(organization, validatedResult.Value.InviteOrganization.Plan, -seatsToRemove); organization.Seats = (short?)validatedResult.Value.PasswordManagerSubscriptionUpdate.Seats;