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 db5aa0c commit e778d22Copy full SHA for e778d22
HMCLCore/src/main/java/org/jackhuang/hmcl/mod/modrinth/ModrinthRemoteModRepository.java
@@ -164,7 +164,7 @@ public Stream<RemoteMod.Version> getRemoteVersionsById(String id) throws IOExcep
164
SEMAPHORE.acquireUninterruptibly();
165
try {
166
id = StringUtils.removePrefix(id, "local-");
167
- List<ProjectVersion> versions = HttpRequest.GET(PREFIX + "/v2/project/" + id + "/version")
+ List<ProjectVersion> versions = HttpRequest.GET(PREFIX + "/v2/project/" + id + "/version?include_changelog=false")
168
.getJson(listTypeOf(ProjectVersion.class));
169
return versions.stream().map(ProjectVersion::toVersion).flatMap(Lang::toStream);
170
} finally {
0 commit comments