1
0
mirror of https://github.com/bitwarden/mobile synced 2026-01-05 18:13:36 +00:00

remove incremental syncs and move to full syncs with revision checks

This commit is contained in:
Kyle Spearrin
2017-02-06 23:40:24 -05:00
parent 007ebadf16
commit 463b0fa28a
11 changed files with 99 additions and 101 deletions

View File

@@ -218,7 +218,7 @@ namespace Bit.App.Pages
_pushNotification.Register();
}
var task = Task.Run(async () => await _syncService.FullSyncAsync());
var task = Task.Run(async () => await _syncService.FullSyncAsync(true));
Application.Current.MainPage = new MainPage();
}
}

View File

@@ -183,7 +183,7 @@ namespace Bit.App.Pages
_pushNotification.Register();
}
var task = Task.Run(async () => await _syncService.FullSyncAsync());
var task = Task.Run(async () => await _syncService.FullSyncAsync(true));
Application.Current.MainPage = new MainPage();
}
}

View File

@@ -94,7 +94,7 @@ namespace Bit.App.Pages
}
_userDialogs.ShowLoading(AppResources.Syncing, MaskType.Black);
var succeeded = await _syncService.FullSyncAsync();
var succeeded = await _syncService.FullSyncAsync(true);
_userDialogs.HideLoading();
if(succeeded)
{