From 69e9b84812def88adee42c3234eee1737b35dcc8 Mon Sep 17 00:00:00 2001 From: Elias Fierke Date: Thu, 9 Oct 2025 08:51:25 +0200 Subject: [PATCH] [fix:] forgot to use the separator in last commit --- MainWindow.axaml.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/MainWindow.axaml.cs b/MainWindow.axaml.cs index 44cfe28..8957725 100644 --- a/MainWindow.axaml.cs +++ b/MainWindow.axaml.cs @@ -212,7 +212,7 @@ public partial class MainWindow : Window } catch (Exception ex) { - //Logger.Log("Saving file not successfull: " + ex.Message, Logger.LogType.Error); + //Logger.Log("Saving file not successful: " + ex.Message, Logger.LogType.Error); await MessageBox.Show(this, ex.Message, "Fehler beim Speichern der Datei"); return null; } @@ -323,7 +323,7 @@ public partial class MainWindow : Window { if (customer.patch == null) { - var got = DataImport.ImportKasAddressList(selected_path); + var got = DataImport.ImportKasAddressList(selected_path, null, customer.separator); if (!got.Item1) { Console.WriteLine("Error while importing. Please try another file."); @@ -339,7 +339,7 @@ public partial class MainWindow : Window } else { - var got = DataImport.ImportKasAddressList(selected_path, customer.patch); + var got = DataImport.ImportKasAddressList(selected_path, customer.patch, customer.separator); if (!got.Item1) { Console.WriteLine("Error while importing. Please try another file.");