From 20c1e2d7f27de372f05c7d177a7168aa1a340681 Mon Sep 17 00:00:00 2001 From: Robyn MacCallum Date: Fri, 11 Nov 2022 12:33:17 -0500 Subject: [PATCH] Add syncCompleted to check to get passwordless requests (#2186) --- src/App/App.xaml.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/App/App.xaml.cs b/src/App/App.xaml.cs index 979828212..36f76e8bd 100644 --- a/src/App/App.xaml.cs +++ b/src/App/App.xaml.cs @@ -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) {