1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-05 23:53:33 +00:00

Fixed vault filter display issue with personal ownership policy (#1950)

This commit is contained in:
mp-bw
2022-06-13 09:30:32 -04:00
committed by GitHub
parent 388ad4e840
commit 51a5f58258

View File

@@ -250,8 +250,7 @@ namespace Bit.Core.Services
public async Task<bool> ShouldShowVaultFilterAsync()
{
var organizations = await _organizationService.GetAllAsync();
var personalOwnershipPolicyApplies = await PolicyAppliesToUser(PolicyType.PersonalOwnership);
return (organizations?.Any() ?? false) && !personalOwnershipPolicyApplies;
return organizations?.Any() ?? false;
}
private bool? GetPolicyBool(Policy policy, string key)