From c8fce82dc15fe4d1c307b9a2b144374fbbdaf0d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Burak=20Kaan=20K=C3=B6se?= Date: Sat, 24 Aug 2024 21:09:20 +0200 Subject: [PATCH] Fix merged accounts report progress for incorrect account during synchronization. --- Wino.Core/MenuItems/MenuItemCollection.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Wino.Core/MenuItems/MenuItemCollection.cs b/Wino.Core/MenuItems/MenuItemCollection.cs index fe04185f..d6f50cb3 100644 --- a/Wino.Core/MenuItems/MenuItemCollection.cs +++ b/Wino.Core/MenuItems/MenuItemCollection.cs @@ -146,7 +146,7 @@ namespace Wino.Core.MenuItems accountMenuItem ??= this.OfType() .FirstOrDefault(a => a.HoldingAccounts.Any(b => b.Id == accountId))?.SubMenuItems .OfType() - .FirstOrDefault(); + .FirstOrDefault(a => a.AccountId == accountId); return accountMenuItem; }