Skip to content

Commit 8969534

Browse files
committed
Use the Minecraft-Preview- prefix for the Appx too
1 parent a6a5325 commit 8969534

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MCLauncher/MainWindow.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ private void InvokeDownload(Version v) {
333333

334334
Debug.WriteLine("Download start");
335335
Task.Run(async () => {
336-
string dlPath = "Minecraft-" + v.Name + ".Appx";
336+
string dlPath = (v.VersionType == VersionType.Preview ? "Minecraft-Preview-" : "Minecraft-") + v.Name + ".Appx";
337337
VersionDownloader downloader = _anonVersionDownloader;
338338
if (v.VersionType == VersionType.Beta) {
339339
downloader = _userVersionDownloader;

0 commit comments

Comments
 (0)