Skip to content
This repository was archived by the owner on Apr 29, 2024. It is now read-only.

Commit a14e121

Browse files
committed
Merge branch 'hotfix/0.4.2'
2 parents 85199c7 + ca88ebb commit a14e121

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.nincraft</groupId>
55
<artifactId>ModPackDownloader</artifactId>
6-
<version>0.4.1</version>
6+
<version>0.4.2</version>
77
<name>Mod Pack Downloader</name>
88
<packaging>jar</packaging>
99
<properties>

src/main/java/com/nincraft/modpackdownloader/processor/DownloadModpackProcessor.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -98,12 +98,12 @@ boolean process(final Entry<File, Manifest> manifest) throws InterruptedExceptio
9898
modPack.init();
9999
arguments.setMcVersion("*");
100100
curseFileHandler.updateCurseFile(modPack);
101-
if (!modPack.getFileName().contains(".zip")) {
102-
modPack.setFileName(modPack.getFileName() + ".zip");
103-
}
104101
arguments.setModFolder(".");
105102
modPack.setDownloadUrl(modPack.getCurseForgeDownloadUrl());
106103
getDownloadUrl(modPack, true);
104+
if (!modPack.getFileName().contains(".zip")) {
105+
modPack.setFileName(modPack.getName() + ".zip");
106+
}
107107
DownloadStatus downloadStatus = downloadHelper.downloadFile(modPack, false);
108108

109109
if (DownloadStatus.FAILURE.equals(downloadStatus)) {

0 commit comments

Comments
 (0)