Browse Source

Add syncCompleted to check to get passwordless requests (#2186)

github-services/pull/2188/head
Robyn MacCallum 3 years ago committed by GitHub
parent
commit
20c1e2d7f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      src/App/App.xaml.cs

5
src/App/App.xaml.cs

@ -145,7 +145,10 @@ namespace Bit.App @@ -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…
Cancel
Save