From f6d74e87dbd4d92da4fc85b59d1674fe7a2affa3 Mon Sep 17 00:00:00 2001 From: Daniel Schick Date: Mon, 22 Jul 2024 13:58:48 +0200 Subject: [PATCH] fixed wrong existance check for new serv entries --- ENI2/DetailViewControls/PortNotificationDetailControl.xaml.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ENI2/DetailViewControls/PortNotificationDetailControl.xaml.cs b/ENI2/DetailViewControls/PortNotificationDetailControl.xaml.cs index 41a3262b..df66ee58 100644 --- a/ENI2/DetailViewControls/PortNotificationDetailControl.xaml.cs +++ b/ENI2/DetailViewControls/PortNotificationDetailControl.xaml.cs @@ -480,7 +480,7 @@ namespace ENI2.DetailViewControls bool found = false; foreach (SERV serv in this._servMessage.Elements) { - if (serv.ServiceName.Equals("FCT JUNGE")) + if (serv.ServiceName.Equals("Fct Junge - Hamburg")) found = true; } @@ -503,7 +503,7 @@ namespace ENI2.DetailViewControls bool found = false; foreach (SERV serv in this._servMessage.Elements) { - if (serv.ServiceName.Equals("ELBE BULK")) + if (serv.ServiceName.Equals("Elbe Bulk Schiffe - Hamburg")) found = true; }