From a46539c3cc1fd56422eb84e0fa731cb6c260bcad Mon Sep 17 00:00:00 2001 From: Elias Fierke Date: Wed, 6 May 2026 06:35:23 +0200 Subject: [PATCH] [fix:] wrong sorting of imported address sets --- MainWindow.axaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MainWindow.axaml.cs b/MainWindow.axaml.cs index fc0a8b7..d385a3e 100644 --- a/MainWindow.axaml.cs +++ b/MainWindow.axaml.cs @@ -564,7 +564,7 @@ public partial class MainWindow : Window var selected_path = paths[0].Path; foreach (var customer in Settings._instance.customers.customers) - if (customer.ID == ((Customer)LstSettingsCustomers.SelectedItems[0]).ID) + if (customer == ((Customer)LstCustomers.SelectedItems[0])) { if (customer.patch == null) {