diff --git a/Dotnet/AppApi/AppApi.cs b/Dotnet/AppApi/AppApi.cs index b72034ecb..b9d41267c 100644 --- a/Dotnet/AppApi/AppApi.cs +++ b/Dotnet/AppApi/AppApi.cs @@ -106,7 +106,10 @@ public void OpenLink(string url) if (url.StartsWith("http://") || url.StartsWith("https://")) { - Process.Start(url).Close(); + Process.Start(new ProcessStartInfo(url) + { + UseShellExecute = true + }); } }