You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem lies in value.responds_to?(:dig) which returns true, even if the types doesn't match, a workaround would be to loosen the types, but a better fix would be #2549 I think.
Extracted from #7569
The following examples works currently
But this does not
Since the value returned by
h.dig? "a", "b"
responds todig?
but there is nodig?
definition that can handle aString
index.The lack of that definition also prevents the following to work:
The text was updated successfully, but these errors were encountered: