Skip to content

Commit

Permalink
Temporarily stop converting + to %20
Browse files Browse the repository at this point in the history
Until I can refactor the code better so that we just do map comparisons.
  • Loading branch information
gfredericks committed Mar 31, 2016
1 parent fdc237d commit 37e38b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/clj_http/fake.clj
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
(defn url-encode
"encodes string into valid URL string"
[string]
(some-> string str (URLEncoder/encode "UTF-8") (.replace "+" "%20")))
(some-> string str (URLEncoder/encode "UTF-8")))

(defn map->query
"converts Clojure map with query-params into URL query-string.
Expand Down

0 comments on commit 37e38b4

Please sign in to comment.