mirror of
https://github.com/bitwarden/mobile.git
synced 2024-11-23 11:45:38 +01:00
only sync if not updated
This commit is contained in:
parent
8fc8d03cc4
commit
3dc705a7a9
@ -103,8 +103,11 @@ namespace Bit.App
|
||||
|
||||
if(string.IsNullOrWhiteSpace(_uri))
|
||||
{
|
||||
Helpers.PerformUpdateTasks(_settings, _appInfoService, _databaseService, _syncService);
|
||||
await Task.Run(() => FullSyncAsync()).ConfigureAwait(false);
|
||||
var updated = Helpers.PerformUpdateTasks(_settings, _appInfoService, _databaseService, _syncService);
|
||||
if(!updated)
|
||||
{
|
||||
await Task.Run(() => FullSyncAsync()).ConfigureAwait(false);
|
||||
}
|
||||
}
|
||||
|
||||
if((DateTime.UtcNow - _appSettingsService.LastCacheClear).TotalDays >= 1)
|
||||
|
Loading…
Reference in New Issue
Block a user