fix: serverInfoURL을 API 서버 주소로 수정

프론트엔드 nginx에 /api/ 프록시 없음 → index.html 반환 → JSON 파싱 실패
직접 API 서버(a301.api.tolelom.xyz)로 요청하도록 변경

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-24 23:40:48 +09:00
parent 90fcc0f94e
commit 6fafe1f3af

View File

@@ -24,7 +24,7 @@ import (
const ( const (
protocolName = "a301" protocolName = "a301"
gameExeName = "A301.exe" 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" webURL = "https://a301.tolelom.xyz"
) )