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
Calling ParsingNesting::Tree::Node.to_query() with a hash containing a value that is not a string and contains a space in its to_s representation causes an error.
ParsingNesting::Tree::Node.build_local_params attempts to wrap the value using "'" + v + "'". It could use "'#{v}'" to properly handle non-string values, such as arrays.
The text was updated successfully, but these errors were encountered:
Calling ParsingNesting::Tree::Node.to_query() with a hash containing a value that is not a string and contains a space in its to_s representation causes an error.
ParsingNesting::Tree::Node.build_local_params attempts to wrap the value using "'" + v + "'". It could use "'#{v}'" to properly handle non-string values, such as arrays.
The text was updated successfully, but these errors were encountered: