1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-29 04:07:37 +02:00

only fetch keys if there are some orgs

This commit is contained in:
Kyle Spearrin 2017-04-26 11:58:52 -04:00
parent 70c57928e7
commit cf58c1b4b5

View File

@ -393,7 +393,7 @@ namespace Bit.App.Services
private async Task SyncOrgKeysAsync(ProfileResponse profile)
{
if(_cryptoService.PrivateKey == null)
if(_cryptoService.PrivateKey == null && (profile.Organizations?.Any() ?? false))
{
var keys = await _accountsApiRepository.GetKeys();
if(!CheckSuccess(keys))