Skip to content

Commit

Permalink
fix alpha/beta for download full installer
Browse files Browse the repository at this point in the history
  • Loading branch information
unitycoder committed Sep 10, 2023
1 parent 4c8f044 commit a86ab36
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions UnityLauncherPro/Tools.cs
Original file line number Diff line number Diff line change
Expand Up @@ -799,6 +799,8 @@ public static string ParseDownloadURLFromWebpage(string version, bool preferFull
if (preferFullInstaller)
{
url = url.Replace("UnityDownloadAssistant-" + version + ".exe", "Windows64EditorInstaller/UnitySetup64-" + version + ".exe");
// handle alpha/beta
url = url.Replace("UnityDownloadAssistant.exe", "Windows64EditorInstaller/UnitySetup64-" + version + ".exe");
}

// didnt find installer
Expand Down

0 comments on commit a86ab36

Please sign in to comment.