From 6fafe1f3affd09c62b75bf489bf98c4a5380c0df Mon Sep 17 00:00:00 2001 From: tolelom <98kimsungmin@naver.com> Date: Tue, 24 Feb 2026 23:40:48 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20serverInfoURL=EC=9D=84=20API=20=EC=84=9C?= =?UTF-8?q?=EB=B2=84=20=EC=A3=BC=EC=86=8C=EB=A1=9C=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 프론트엔드 nginx에 /api/ 프록시 없음 → index.html 반환 → JSON 파싱 실패 직접 API 서버(a301.api.tolelom.xyz)로 요청하도록 변경 Co-Authored-By: Claude Sonnet 4.6 --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 22f6cfd..822897d 100644 --- a/main.go +++ b/main.go @@ -24,7 +24,7 @@ import ( const ( protocolName = "a301" gameExeName = "A301.exe" - serverInfoURL = "https://a301.tolelom.xyz/api/download/info" + serverInfoURL = "https://a301.api.tolelom.xyz/api/download/info" webURL = "https://a301.tolelom.xyz" )