Skip to content

Commit 74ea99a

Browse files
committed
Method API.ReCAPTCHA.Validate fixed by logging at the INFO level rather than FATAL when the ReCAPTCHA does not validate
1 parent 7da112e commit 74ea99a

File tree

5 files changed

+1
-1
lines changed

5 files changed

+1
-1
lines changed

rls/API.Library.dll

0 Bytes
Binary file not shown.

rls/API.Library.pdb

0 Bytes
Binary file not shown.

src/API.Library/Entities/ReCAPTCHA.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public static bool Validate(string encodedResponse)
7979
else
8080
{
8181
// Something went wrong
82-
Log.Instance.Fatal("Invalid Encoded Response: " + encodedResponse);
82+
Log.Instance.Info("Invalid Encoded Response: " + encodedResponse);
8383
return false;
8484
}
8585
}
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)