diff --git a/src/Core/Pages/TabsPage.cs b/src/Core/Pages/TabsPage.cs index 0371b44a9..f37c4ee04 100644 --- a/src/Core/Pages/TabsPage.cs +++ b/src/Core/Pages/TabsPage.cs @@ -96,6 +96,14 @@ namespace Bit.App.Pages if (message.Command == "syncCompleted") { MainThread.BeginInvokeOnMainThread(async () => await UpdateVaultButtonTitleAsync()); + try + { + await ForcePasswordResetIfNeededAsync(); + } + catch (Exception ex) + { + _logger.Value.Exception(ex); + } } }); await UpdateVaultButtonTitleAsync();