1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-09-29 04:07:37 +02:00

change default lock on new installs to 15 minutes

This commit is contained in:
Kyle Spearrin 2019-07-06 23:04:10 -04:00
parent 62d8824450
commit ab84200347

View File

@ -129,7 +129,7 @@ namespace Bit.App.Utilities
var currentLock = await storageService.GetAsync<int?>(Constants.LockOptionKey);
if(currentLock == null)
{
await storageService.SaveAsync(Constants.LockOptionKey, -1);
await storageService.SaveAsync(Constants.LockOptionKey, 15);
}
}
else if(lastBuild != currentBuild)