From 43517fc4f613ef8865f95cce972c3b35d16904de Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 3 Jun 2019 15:50:26 -0400 Subject: [PATCH] set last active to 1 year ago --- src/App/Migration/MigrationHelpers.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/Migration/MigrationHelpers.cs b/src/App/Migration/MigrationHelpers.cs index 6f8ceb369..1a6a33fcf 100644 --- a/src/App/Migration/MigrationHelpers.cs +++ b/src/App/Migration/MigrationHelpers.cs @@ -176,7 +176,7 @@ namespace Bit.App.Migration // Post migration tasks await cryptoService.ToggleKeyAsync(); - await storageService.SaveAsync(Constants.LastActiveKey, DateTime.MinValue); + await storageService.SaveAsync(Constants.LastActiveKey, DateTime.UtcNow.AddYears(-1)); await lockService.CheckLockAsync(); // Remove "needs migration" flag