fix : 코드 버그 수정

This commit is contained in:
qornwh1
2026-03-17 12:58:04 +09:00
parent f27cee05bb
commit 1c63b8532f

View File

@@ -62,7 +62,7 @@ public class RestApi : Singleton<RestApi>
// 플레이어 프로필 조회 - 성공 시 PlayerProfileResponse 반환
public async Task<PlayerProfileResponse?> 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