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 0d5a287 commit 1f58cafCopy full SHA for 1f58caf
UnityLauncherPro/Tools.cs
@@ -368,6 +368,9 @@ static string ParseDownloadURLFromWebpage(string version)
368
if (Tools.VersionIsBeta(version)) website = "https://unity3d.com/unity/beta/" + version;
369
if (Tools.VersionIsAlpha(version)) website = "https://unity3d.com/unity/alpha/" + version;
370
371
+ // fix unity server problem, page says 404 found if no url params
372
+ website += "?unitylauncherpro";
373
+
374
// download html
375
string sourceHTML = client.DownloadString(website);
376
string[] lines = sourceHTML.Split(new[] { "\r\n", "\r", "\n" }, StringSplitOptions.None);
0 commit comments