mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
Added null check for loading non-existent policies (#753)
This commit is contained in:
@@ -37,6 +37,10 @@ namespace Bit.Core.Services
|
||||
var userId = await _userService.GetUserIdAsync();
|
||||
var policies = await _storageService.GetAsync<Dictionary<string, PolicyData>>(
|
||||
string.Format(Keys_PoliciesPrefix, userId));
|
||||
if(policies == null)
|
||||
{
|
||||
return null;
|
||||
}
|
||||
_policyCache = policies.Select(p => new Policy(policies[p.Key]));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user