From 3b796c65999b5570b32158e68614c3c9681c6d3f 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 d75b159c9..bc9023a30 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) {