Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Use standard Clojure map for cookies
  • Loading branch information
samumbach committed Sep 23, 2022
commit 38ffe03bcb15965e2999d733143543f853ba71a7
2 changes: 1 addition & 1 deletion src/clj_http/cookies.clj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
(if (not (nil? (get m k)))
(assoc newm k (get m k))
newm))
(sorted-map) (sort (keys m))))
{} (keys m)))

(defn to-cookie
"Converts a ClientCookie object into a tuple where the first item is
Expand Down