1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-10 21:33:36 +00:00

Push notification and sync fixes

This commit is contained in:
Kyle Spearrin
2016-06-30 00:36:44 -04:00
parent 8653a76e26
commit 7a48128e43
8 changed files with 26 additions and 20 deletions

View File

@@ -125,7 +125,7 @@ namespace Bit.App.Services
var folderTask = SyncFoldersAsync(ciphers.Result.Data.Where(c => c.Type == Enums.CipherType.Folder), true);
await Task.WhenAll(siteTask, folderTask);
if(folderTask.Exception == null || siteTask.Exception == null)
if(folderTask.Exception != null || siteTask.Exception != null)
{
return false;
}
@@ -164,7 +164,7 @@ namespace Bit.App.Services
await Task.WhenAll(siteTask, folderTask);
if(folderTask.Exception == null || siteTask.Exception == null)
if(folderTask.Exception != null || siteTask.Exception != null)
{
return false;
}