mirror of
https://github.com/bitwarden/android.git
synced 2025-01-11 18:57:39 +03:00
is locked inside if
This commit is contained in:
parent
c96daf2d68
commit
c77d4b795a
1 changed files with 1 additions and 2 deletions
|
@ -164,8 +164,7 @@ namespace Bit.App
|
|||
var authed = await _userService.IsAuthenticatedAsync();
|
||||
if(authed)
|
||||
{
|
||||
var locked = await _lockService.IsLockedAsync();
|
||||
if(locked)
|
||||
if(await _lockService.IsLockedAsync())
|
||||
{
|
||||
Current.MainPage = new NavigationPage(new LockPage());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue