We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94341e1 commit e22c685Copy full SHA for e22c685
CommunityBugFixCollection/AnyProtocolHyperlinks.cs
@@ -27,7 +27,7 @@ private static bool HyperlinkOpenDialogOpenPrefix(HyperlinkOpenDialog __instance
27
if (__instance.URL.Value is not null)
28
{
29
Logger.Debug(() => $"Opening Hyperlink: {__instance.URL.Value}");
30
- __instance.RunInBackground(() => Process.Start(__instance.URL.Value.ToString()));
+ __instance.RunInBackground(() => Process.Start(new ProcessStartInfo(__instance.URL.Value.ToString()) { UseShellExecute = true }));
31
}
32
33
__instance.Slot.Destroy();
0 commit comments