From 78004dbdb9a8d4abe0046fadd46e53e3428231f6 Mon Sep 17 00:00:00 2001 From: Jacob Fink Date: Thu, 3 Aug 2023 16:28:04 -0400 Subject: [PATCH] [PM-2713] clear service cache when adding new account --- src/App/Utilities/AccountManagement/AccountsManager.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/App/Utilities/AccountManagement/AccountsManager.cs b/src/App/Utilities/AccountManagement/AccountsManager.cs index 919070359..6fffba58c 100644 --- a/src/App/Utilities/AccountManagement/AccountsManager.cs +++ b/src/App/Utilities/AccountManagement/AccountsManager.cs @@ -206,6 +206,7 @@ namespace Bit.App.Utilities.AccountManagement private async Task AddAccountAsync() { + await AppHelpers.ClearServiceCacheAsync(); await Device.InvokeOnMainThreadAsync(() => { Options.HideAccountSwitcher = false;