We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We have forms being submitted with "\n" values in our honeypot fields (which are just the default a_comment_body). These are not properly being caught in the protect_from_spam method. It looks like this is because "\n".blank? returns true: https://github.com/curtis/honeypot-captcha/blob/master/lib/honeypot-captcha.rb#L18.
"\n"
a_comment_body
protect_from_spam
"\n".blank?
Can we get a modification to that function to check for parameter length as well?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We have forms being submitted with
"\n"
values in our honeypot fields (which are just the defaulta_comment_body
). These are not properly being caught in theprotect_from_spam
method. It looks like this is because"\n".blank?
returns true: https://github.com/curtis/honeypot-captcha/blob/master/lib/honeypot-captcha.rb#L18.Can we get a modification to that function to check for parameter length as well?
The text was updated successfully, but these errors were encountered: