Merge pull request #1387 from Flow-Launcher/fix_exception_duplicate_url_opening

Fix opening url twice when clicking on exception report link
This commit is contained in:
Jeremy Wu 2022-09-16 22:39:25 +10:00 committed by GitHub
commit 792b383505
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -77,7 +77,6 @@ namespace Flow.Launcher
};
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);