From 143520e0eb214b0199a57e5dae733e78c74a640e Mon Sep 17 00:00:00 2001 From: Jeremy Date: Fri, 16 Sep 2022 22:19:26 +1000 Subject: [PATCH] fix opening url twice when clicking on exception report link --- Flow.Launcher/ReportWindow.xaml.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Flow.Launcher/ReportWindow.xaml.cs b/Flow.Launcher/ReportWindow.xaml.cs index 72c69d74d17..4899edc1463 100644 --- a/Flow.Launcher/ReportWindow.xaml.cs +++ b/Flow.Launcher/ReportWindow.xaml.cs @@ -77,7 +77,6 @@ private Paragraph Hyperlink(string textBeforeUrl, string url) }; link.Inlines.Add(url); link.NavigateUri = new Uri(url); - link.RequestNavigate += (s, e) => SearchWeb.OpenInBrowserTab(e.Uri.ToString()); link.Click += (s, e) => SearchWeb.OpenInBrowserTab(url); paragraph.Inlines.Add(textBeforeUrl);