Merge pull request #935 from tr4wzified/manifest-url-fix

Fix manifest URLs being broken for Wabbajack CDN links
This commit is contained in:
Timothy Baldridge 2020-06-29 06:52:09 -07:00 committed by GitHub
commit 5e2786947f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -61,6 +61,7 @@ namespace Wabbajack
url = url.Substring(0, url.IndexOf("release", StringComparison.Ordinal));
//url = url.Replace("&", "^&");
url = url.Replace(" ", "%20");
Process.Start(new ProcessStartInfo("cmd", $"/c start {url}") {CreateNoWindow = true});
e.Handled = true;