From ea44592d53b41bc74a0bad3e9c48557c83706a40 Mon Sep 17 00:00:00 2001 From: Calboot Date: Sat, 17 Jan 2026 21:21:38 +0800 Subject: [PATCH] initial --- .../hmcl/mod/modrinth/ModrinthRemoteModRepository.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/modrinth/ModrinthRemoteModRepository.java b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/modrinth/ModrinthRemoteModRepository.java index 68fe206df4..3cfa7c255c 100644 --- a/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/modrinth/ModrinthRemoteModRepository.java +++ b/HMCLCore/src/main/java/org/jackhuang/hmcl/mod/modrinth/ModrinthRemoteModRepository.java @@ -164,7 +164,7 @@ public Stream getRemoteVersionsById(String id) throws IOExcep SEMAPHORE.acquireUninterruptibly(); try { id = StringUtils.removePrefix(id, "local-"); - List versions = HttpRequest.GET(PREFIX + "/v2/project/" + id + "/version") + List versions = HttpRequest.GET(PREFIX + "/v2/project/" + id + "/version?include_changelog=false") .getJson(listTypeOf(ProjectVersion.class)); return versions.stream().map(ProjectVersion::toVersion).flatMap(Lang::toStream); } finally {