From feff542f85bac0ae0b6a2f45575d219dd93a3f89 Mon Sep 17 00:00:00 2001 From: Rene Evertz Date: Thu, 31 Oct 2024 16:18:51 +0100 Subject: [PATCH] =?UTF-8?q?Neue=20Absender=20IK=20+=20Bei=20Fehlerhaftem?= =?UTF-8?q?=20Code=20wird=20Dakota=20Verzeichnis=20aufger=C3=A4umt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dakota/DakotaConfig.cs | 2 +- DakotaSender/Program.cs | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/Dakota/DakotaConfig.cs b/Dakota/DakotaConfig.cs index 99693d1ce..f58ad1682 100644 --- a/Dakota/DakotaConfig.cs +++ b/Dakota/DakotaConfig.cs @@ -9,7 +9,7 @@ namespace Dakota { public static class DakotaConfig { - public static string IKAbsender => "109500969"; + public static string IKAbsender => "490517618"; public static string TrennzeichenInnerhalb => ":"; public static string Trennzeichen => "+"; diff --git a/DakotaSender/Program.cs b/DakotaSender/Program.cs index cf1cbdab9..808255650 100644 --- a/DakotaSender/Program.cs +++ b/DakotaSender/Program.cs @@ -288,10 +288,13 @@ namespace DakotaSender Returncodes.EvaluateSendCode(rc, out is_dakota_running, out success, out string message); - if (is_dakota_running) + if (!success) { FileController.DeleteDakotaFile(file); + } + if (is_dakota_running) + { throw new Exception(); }