fix : 코드 버그 수정
This commit is contained in:
@@ -62,7 +62,7 @@ public class RestApi : Singleton<RestApi>
|
|||||||
// 플레이어 프로필 조회 - 성공 시 PlayerProfileResponse 반환
|
// 플레이어 프로필 조회 - 성공 시 PlayerProfileResponse 반환
|
||||||
public async Task<PlayerProfileResponse?> GetPlayerProfileAsync(string username)
|
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++)
|
for (int attempt = 1; attempt <= MAX_RETRY; attempt++)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
|
|||||||
Reference in New Issue
Block a user