From cc31df228a3db996828bfe62ae8b01d410e01edb Mon Sep 17 00:00:00 2001 From: Christian Date: Sun, 22 Feb 2026 15:22:15 +0100 Subject: [PATCH] =?UTF-8?q?Bugfix=20beim=20Laden,=20wenn=20die=20OwnChat?= =?UTF-8?q?=20Settings=20Url=20nicht=20korrekt=20zur=C3=BCckgeliefert=20wi?= =?UTF-8?q?rd=20(z.B.=20wenn=20Tool=20down=20ist)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- BeWo/View/Detail/MandatorView.xaml.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/BeWo/View/Detail/MandatorView.xaml.cs b/BeWo/View/Detail/MandatorView.xaml.cs index e2811ea29..eeb61eeca 100644 --- a/BeWo/View/Detail/MandatorView.xaml.cs +++ b/BeWo/View/Detail/MandatorView.xaml.cs @@ -27,7 +27,11 @@ namespace BeWo.View.Detail if (BeWoApp.LoggedOnUser.HasRight(BS.Shared.UserRightType.ChatAdminSettings)) { var url = ServiceFacade.DoOperationsServiceSync(s => s.GetOwnChatSettingsUrl()); - HyperlinkOwnChatSettings.NavigateUri = new Uri(url); + if (!String.IsNullOrEmpty(url)) + { + HyperlinkOwnChatSettings.NavigateUri = new Uri(url); + } + //HyperlinkOwnChatSettings.Inlines.Add("testtestestt"); //HyperlinkOwnChatSettings.Text }