Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This line: ``` builder.query = URI.encode_www_form(build_query(config)).gsub!("+", "%20") ``` Replaces the whole value, so the Auth doesn’t work. Replaced it with this: ``` builder.query = URI.encode_www_form(build_query(config)).gsub(/\+/, "%20") ```
- Loading branch information