diff --git a/src/Core/Services/Implementations/UserService.cs b/src/Core/Services/Implementations/UserService.cs index a2ce5d91f9..076e6b68bb 100644 --- a/src/Core/Services/Implementations/UserService.cs +++ b/src/Core/Services/Implementations/UserService.cs @@ -838,7 +838,7 @@ namespace Bit.Core.Services var orgAbilities = await _applicationCacheService.GetOrganizationAbilitiesAsync(); return _currentContext.Organizations.Any(o => orgAbilities.ContainsKey(o.Id) && - orgAbilities[o.Id].UsersGetPremium); + orgAbilities[o.Id].UsersGetPremium && orgAbilities[o.Id].Enabled); } private async Task UpdatePasswordHash(User user, string newPassword,