Skip to content
This repository has been archived by the owner on Jun 11, 2022. It is now read-only.

Commit

Permalink
Fix issue #9 (captchasolutions)
Browse files Browse the repository at this point in the history
  • Loading branch information
EarsKilla committed Apr 6, 2019
1 parent ba3f2ef commit 1f4b3e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SteamAccCreator/Web/HttpHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ public Captcha.CaptchaSolution SolveCaptcha(Action<string> updateStatus, Models.

var solution = Regex.Replace(_resp, @"\t|\n|\r", "");
Logger.Debug($"Captchasolutions: {solution}");
return new Captcha.CaptchaSolution(true, solution, null);
return new Captcha.CaptchaSolution(solution, null, captchaConfig);
}
case Enums.CaptchaService.RuCaptcha:
{
Expand Down

0 comments on commit 1f4b3e1

Please sign in to comment.