diff --git a/src/Core/Services/Implementations/OrganizationService.cs b/src/Core/Services/Implementations/OrganizationService.cs index 02a6b98b8b..63178459c7 100644 --- a/src/Core/Services/Implementations/OrganizationService.cs +++ b/src/Core/Services/Implementations/OrganizationService.cs @@ -1453,7 +1453,7 @@ namespace Bit.Core.Services } if (user.Type != OrganizationUserType.Owner && - !await HasConfirmedOwnersExceptAsync(user.OrganizationId, Enumerable.Empty())) + !await HasConfirmedOwnersExceptAsync(user.OrganizationId, new[] {user.Id})) { throw new BadRequestException("Organization must have at least one confirmed owner."); }