From f5b05ecd92f48c85d70134527a67f97fa9ea8978 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 31 May 2019 23:26:09 -0400 Subject: [PATCH] remove needs migration flag --- src/App/Migration/MigrationHelpers.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/App/Migration/MigrationHelpers.cs b/src/App/Migration/MigrationHelpers.cs index ee69dfb10..3b6dc1d46 100644 --- a/src/App/Migration/MigrationHelpers.cs +++ b/src/App/Migration/MigrationHelpers.cs @@ -157,6 +157,8 @@ namespace Bit.App.Migration await cryptoService.SetEncKeyAsync(oldEncKey); await cryptoService.SetEncPrivateKeyAsync(oldEncPrivateKey); + // Remove "needs migration" flag + settingsShim.Remove(Constants.OldLastActivityKey); return true; } }