mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 21:18:13 -05:00
fix inequality
This commit is contained in:
parent
c582929daf
commit
114bf7300a
@ -705,7 +705,7 @@ namespace Bit.Core.Services
|
||||
{
|
||||
var userCount = await _organizationUserRepository.GetCountByOrganizationIdAsync(organizationId);
|
||||
var availableSeats = organization.Seats.Value - userCount;
|
||||
if(availableSeats >= emails.Count())
|
||||
if(availableSeats < emails.Count())
|
||||
{
|
||||
throw new BadRequestException("You have reached the maximum number of users " +
|
||||
$"({organization.Seats.Value}) for this organization.");
|
||||
|
Loading…
x
Reference in New Issue
Block a user