diff --git a/CommunityBugFixCollection/AnyProtocolHyperlinks.cs b/CommunityBugFixCollection/AnyProtocolHyperlinks.cs index b36117e..e8f412a 100644 --- a/CommunityBugFixCollection/AnyProtocolHyperlinks.cs +++ b/CommunityBugFixCollection/AnyProtocolHyperlinks.cs @@ -27,7 +27,7 @@ private static bool HyperlinkOpenDialogOpenPrefix(HyperlinkOpenDialog __instance if (__instance.URL.Value is not null) { Logger.Debug(() => $"Opening Hyperlink: {__instance.URL.Value}"); - __instance.RunInBackground(() => Process.Start(__instance.URL.Value.ToString())); + __instance.RunInBackground(() => Process.Start(new ProcessStartInfo(__instance.URL.Value.ToString()) { UseShellExecute = true })); } __instance.Slot.Destroy();