alt: not removing game if curse mod cannot be downloaded

This commit is contained in:
huanghongxun
2020-02-13 00:11:45 +08:00
parent 0f72d98067
commit 979e58edf1

View File

@@ -87,7 +87,7 @@ public final class CurseInstallTask extends Task<Void> {
onDone().register(event -> {
Exception ex = event.getTask().getException();
if (event.isFailed()) {
if (!(ex instanceof CurseCompletionException) || ex.getCause() instanceof FileNotFoundException) {
if (!(ex instanceof CurseCompletionException)) {
repository.removeVersionFromDisk(name);
}
}