mirror of
https://github.com/bitwarden/android.git
synced 2024-10-31 23:25:45 +03:00
change default lock on new installs to 15 minutes
This commit is contained in:
parent
62d8824450
commit
ab84200347
1 changed files with 1 additions and 1 deletions
|
@ -129,7 +129,7 @@ namespace Bit.App.Utilities
|
||||||
var currentLock = await storageService.GetAsync<int?>(Constants.LockOptionKey);
|
var currentLock = await storageService.GetAsync<int?>(Constants.LockOptionKey);
|
||||||
if(currentLock == null)
|
if(currentLock == null)
|
||||||
{
|
{
|
||||||
await storageService.SaveAsync(Constants.LockOptionKey, -1);
|
await storageService.SaveAsync(Constants.LockOptionKey, 15);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if(lastBuild != currentBuild)
|
else if(lastBuild != currentBuild)
|
||||||
|
|
Loading…
Reference in a new issue