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 a6a5325 commit 8969534Copy full SHA for 8969534
MCLauncher/MainWindow.xaml.cs
@@ -333,7 +333,7 @@ private void InvokeDownload(Version v) {
333
334
Debug.WriteLine("Download start");
335
Task.Run(async () => {
336
- string dlPath = "Minecraft-" + v.Name + ".Appx";
+ string dlPath = (v.VersionType == VersionType.Preview ? "Minecraft-Preview-" : "Minecraft-") + v.Name + ".Appx";
337
VersionDownloader downloader = _anonVersionDownloader;
338
if (v.VersionType == VersionType.Beta) {
339
downloader = _userVersionDownloader;
0 commit comments