From 1c63b8532f9d374996e47a3f5046b45b36b17258 Mon Sep 17 00:00:00 2001 From: qornwh1 Date: Tue, 17 Mar 2026 12:58:04 +0900 Subject: [PATCH] =?UTF-8?q?fix=20:=20=EC=BD=94=EB=93=9C=20=EB=B2=84?= =?UTF-8?q?=EA=B7=B8=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- MMOTestServer/MMOserver/Api/RestApi.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MMOTestServer/MMOserver/Api/RestApi.cs b/MMOTestServer/MMOserver/Api/RestApi.cs index 97ee7ca..35affab 100644 --- a/MMOTestServer/MMOserver/Api/RestApi.cs +++ b/MMOTestServer/MMOserver/Api/RestApi.cs @@ -62,7 +62,7 @@ public class RestApi : Singleton // 플레이어 프로필 조회 - 성공 시 PlayerProfileResponse 반환 public async Task GetPlayerProfileAsync(string username) { - string url = VERIFY_URL + "/api/internal/player/profile?username=" + Uri.EscapeDataString(username); + string url = AppConfig.RestApi.BaseUrl + "/api/internal/player/profile?username=" + Uri.EscapeDataString(username); for (int attempt = 1; attempt <= MAX_RETRY; attempt++) { try