diff --git a/src/App/Utilities/AppHelpers.cs b/src/App/Utilities/AppHelpers.cs index 466309a09..91a13923b 100644 --- a/src/App/Utilities/AppHelpers.cs +++ b/src/App/Utilities/AppHelpers.cs @@ -121,7 +121,11 @@ namespace Bit.App.Utilities if(lastBuild == null) { // Installed - await storageService.SaveAsync(Constants.LockOptionKey, -1); + var currentLock = await storageService.GetAsync(Constants.LockOptionKey); + if(currentLock == null) + { + await storageService.SaveAsync(Constants.LockOptionKey, -1); + } } else if(lastBuild != currentBuild) {