mirror of
https://github.com/HMCL-dev/HMCL.git
synced 2025-03-31 18:10:26 +08:00
修复 ModrinthRemoteModRepository::getRemoteVersionByLocalFile 未捕获 NoSuchFileException 的问题 (#3735)
--------- Co-authored-by: Zkitefly <2573874409@qq.com>
This commit is contained in:
parent
7efbbefdcf
commit
bdaf72fe2f
@ -31,6 +31,7 @@ import org.jackhuang.hmcl.util.io.ResponseCodeException;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.nio.file.NoSuchFileException;
|
||||
import java.nio.file.Path;
|
||||
import java.time.Instant;
|
||||
import java.util.*;
|
||||
@ -113,6 +114,8 @@ public final class ModrinthRemoteModRepository implements RemoteModRepository {
|
||||
} else {
|
||||
throw e;
|
||||
}
|
||||
} catch (NoSuchFileException e) {
|
||||
return Optional.empty();
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user