proper type for push reg date on migration

This commit is contained in:
Kyle Spearrin 2019-06-03 13:53:36 -04:00
parent 97e98e1d9d
commit 11ec9b320e
1 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ namespace Bit.App.Migration
public static async Task<bool> PerformMigrationAsync()
{
if(!NeedsMigration())
if(!NeedsMigration() || Migrating)
{
return false;
}
@ -112,7 +112,7 @@ namespace Bit.App.Migration
settingsShim.GetValueOrDefault("push:registeredToken", null));
Log("Migrating 6.9");
await storageService.SaveAsync(Constants.PushLastRegistrationDateKey,
settingsShim.GetValueOrDefault("push:lastRegistrationDate", null));
settingsShim.GetValueOrDefault("push:lastRegistrationDate", DateTime.MinValue));
Log("Migrating 6.10");
await storageService.SaveAsync("rememberedEmail",
settingsShim.GetValueOrDefault("other:lastLoginEmail", null));