From e778d223a7fa88ff5ef1b0764c972a7b807196eb Mon Sep 17 00:00:00 2001 From: Calboot Date: Mon, 19 Jan 2026 21:09:59 +0800 Subject: [PATCH] =?UTF-8?q?Modrinth=20=E9=BB=98=E8=AE=A4=E4=B8=8D=E8=8E=B7?= =?UTF-8?q?=E5=8F=96=E6=9B=B4=E6=96=B0=E6=97=A5=E5=BF=97=20(#5250)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../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 68fe206df..3cfa7c255 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 final class ModrinthRemoteModRepository implements RemoteModRepository { 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 {