1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-11-06 09:10:50 +01:00

check lock after migration

This commit is contained in:
Kyle Spearrin 2019-06-03 15:32:40 -04:00
parent c9faa40475
commit 6b68e85077

View File

@ -40,6 +40,7 @@ namespace Bit.App.Migration
var passwordGenerationService = ServiceContainer.Resolve<IPasswordGenerationService>(
"passwordGenerationService");
var syncService = ServiceContainer.Resolve<ISyncService>("syncService");
var lockService = ServiceContainer.Resolve<ILockService>("lockService");
// Get old data
@ -179,6 +180,7 @@ namespace Bit.App.Migration
settingsShim.Remove(Constants.OldUserIdKey);
Migrating = false;
messagingService.Send("migrated");
await lockService.CheckLockAsync();
var task = Task.Run(() => syncService.FullSyncAsync(true));
return true;
}