1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

Fixing comparison issue.

This commit is contained in:
jrmccannon 2025-03-28 12:26:46 -05:00
parent 65996ae0a9
commit e78c9f65b4
No known key found for this signature in database
GPG Key ID: CF03F3DB01CE96A6

View File

@ -46,7 +46,7 @@ public class PasswordManagerSubscriptionUpdate
/// <summary>
/// If the new seat total is equal to the organization's auto-scale seat count
/// </summary>
public bool MaxSeatsReached => UpdatedSeatTotal.HasValue && MaxAutoScaleSeats.HasValue && UpdatedSeatTotal.Value == MaxAutoScaleSeats.Value;
public bool MaxSeatsReached => UpdatedSeatTotal.HasValue && MaxAutoScaleSeats.HasValue && UpdatedSeatTotal.Value >= MaxAutoScaleSeats.Value;
public Plan.PasswordManagerPlanFeatures PasswordManagerPlan { get; }