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:
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user