1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-06-25 10:26:02 +02:00

background thread on full sync after login

This commit is contained in:
Kyle Spearrin 2016-07-19 18:59:46 -04:00
parent d07210c7dc
commit b2c96cb8fc
2 changed files with 78 additions and 6208 deletions

File diff suppressed because it is too large Load Diff

View File

@ -131,7 +131,7 @@ namespace Bit.App.Pages
_authService.UserId = response.Result.Profile.Id;
_authService.Email = response.Result.Profile.Email;
var syncTask = _syncService.FullSyncAsync();
var task = Task.Run(async () => await _syncService.FullSyncAsync());
Application.Current.MainPage = new MainPage();
}
}