-
-
Notifications
You must be signed in to change notification settings - Fork 196
New issue
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
[ERROR] public_body#list (TypeError) "no implicit conversion of false into Integer" #5874
Labels
Comments
# Passing false to upcase as the exception suggests is happening:
Unicode.upcase(false)
# => TypeError: wrong argument type false (expected String)
# Maybe its something else on the same line? Nope…
@tag = false
Unicode.upcase(@tag) if @tag.scan(/./mu).size == 1
# => NoMethodError: undefined method `scan' for false:FalseClass |
I think #5871 might be the underlying cause of this one. |
Backtrace after cdccd2a
|
Nice! |
Merged
Closing after #5907 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The text was updated successfully, but these errors were encountered: