fix nested-maps transform

This commit is contained in:
Adrian Tiberius 2016-11-16 17:55:37 +02:00
parent a0b37c4211
commit 8a4b5cccb1
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@
(->> (keywordize-keys (apply hash-map (split s #"[;=]"))) (->> (keywordize-keys (apply hash-map (split s #"[;=]")))
(map (fn [[k v]] (map (fn [[k v]]
[k (if (= k :params) [k (if (= k :params)
(read-string v) (keywordize-keys (read-string v))
v)])) v)]))
(into {}))) (into {})))