From c3f557a49f23c85137073783e92e4f2bd2dc0ca4 Mon Sep 17 00:00:00 2001 From: Christian Date: Sun, 3 May 2026 23:58:10 +0200 Subject: [PATCH] =?UTF-8?q?Help=20Info=20Control=20f=C3=BCr=20Links=20zur?= =?UTF-8?q?=20Hilfeseite=20erstellt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- BeWo/View/Controls/Utils/HelpInfoControl.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BeWo/View/Controls/Utils/HelpInfoControl.xaml.cs b/BeWo/View/Controls/Utils/HelpInfoControl.xaml.cs index 0e7266179..8a4713ca7 100644 --- a/BeWo/View/Controls/Utils/HelpInfoControl.xaml.cs +++ b/BeWo/View/Controls/Utils/HelpInfoControl.xaml.cs @@ -31,7 +31,7 @@ namespace BeWo.View.Controls.Utils private void btn_Click(object sender, RoutedEventArgs e) { - if (!string.IsNullOrWhiteSpace(Url)) + if (!string.IsNullOrWhiteSpace(Url) && Url.StartsWith("http")) Process.Start(new ProcessStartInfo(Url) { UseShellExecute = true }); } }