mirror of
https://github.com/bitwarden/android.git
synced 2025-01-12 11:17:30 +03:00
Add syncCompleted to check to get passwordless requests (#2186)
This commit is contained in:
parent
7870c2706b
commit
20c1e2d7f2
1 changed files with 4 additions and 1 deletions
|
@ -145,7 +145,10 @@ namespace Bit.App
|
|||
new NavigationPage(new RemoveMasterPasswordPage()));
|
||||
});
|
||||
}
|
||||
else if (message.Command == Constants.PasswordlessLoginRequestKey || message.Command == "unlocked" || message.Command == AccountsManagerMessageCommands.ACCOUNT_SWITCH_COMPLETED)
|
||||
else if (message.Command == Constants.PasswordlessLoginRequestKey
|
||||
|| message.Command == "unlocked"
|
||||
|| message.Command == "syncCompleted"
|
||||
|| message.Command == AccountsManagerMessageCommands.ACCOUNT_SWITCH_COMPLETED)
|
||||
{
|
||||
lock (_processingLoginRequestLock)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue