Skip to content

Commit 2b5f9b0

Browse files
author
nextcaptcha
committed
balance methond name
1 parent 3102c38 commit 2b5f9b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

NextCaptchaAPI.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public NextCaptchaAPI(string clientKey, string solftId = "", string callbackUrl
4242
_httpClient = new HttpClient();
4343
}
4444

45-
private async Task<string> GetBalanceAsync()
45+
private async Task<string> GetBalanceInternalAsync()
4646
{
4747
var response = await _httpClient.GetAsync($"{HOST}/getBalance?clientKey={_clientKey}");
4848
if (!response.IsSuccessStatusCode)
@@ -254,7 +254,7 @@ public async Task<Dictionary<string, string>> SolveFunCaptchaAsync(string websit
254254

255255
public async Task<string> GetBalanceAsync()
256256
{
257-
return await GetBalanceAsync();
257+
return await GetBalanceInternalAsync();
258258
}
259259
}
260260
}

0 commit comments

Comments
 (0)