From 0f9ba3b3fea31055dbd7e5d47ed31291745ff1ee Mon Sep 17 00:00:00 2001 From: HRudyPlayZ Date: Tue, 28 Jun 2022 13:26:41 +0200 Subject: [PATCH] Changed one comment. That's it for 2.0 --- .../hrudyplayz/mcinstanceloader/resources/ResourceObject.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/hrudyplayz/mcinstanceloader/resources/ResourceObject.java b/src/main/java/com/hrudyplayz/mcinstanceloader/resources/ResourceObject.java index ac9ea7f..d4d9b7b 100644 --- a/src/main/java/com/hrudyplayz/mcinstanceloader/resources/ResourceObject.java +++ b/src/main/java/com/hrudyplayz/mcinstanceloader/resources/ResourceObject.java @@ -200,8 +200,8 @@ private boolean genCurseforgeUrl() { private boolean getCurseforgeData() { // Grabs some properties for Curseforge downloads. - // This is still using the old API as thankfully it still works with Twitch's user agent as of now. Might have to switch to a proxy later on. - // This project cannot rely on CFCore as there's both the needs to hide the API key and to download "opted-out" files and Overwolf doesn't propose any solution for those issues. + // This is using an unofficial API proxy to allow for any kind of files to work. Might have to switch again later on. + // This project cannot rely on the official CFCore by default as there's both the needs to hide the API key and to download "opted-out" files and Overwolf doesn't propose any solution for those issues. String apiUrl = Config.curseforgeURL + "/v1/mods/" + (this.projectId != null? this.projectId : "") + "/files/" + (this.fileId != null? this.fileId : "");