fix bug in select-one! where nil result could not be returned
This commit is contained in:
parent
da554d8247
commit
1f2b4f03de
1 changed files with 3 additions and 3 deletions
|
|
@ -37,9 +37,9 @@
|
||||||
(defn compiled-select-one!
|
(defn compiled-select-one!
|
||||||
"Version of select-one! that takes in a selector pre-compiled with comp-paths"
|
"Version of select-one! that takes in a selector pre-compiled with comp-paths"
|
||||||
[selector structure]
|
[selector structure]
|
||||||
(let [res (compiled-select-one selector structure)]
|
(let [res (compiled-select selector structure)]
|
||||||
(when (nil? res) (throw-illegal "No elements found for params: " selector structure))
|
(when (not= 1 (count res)) (throw-illegal "Expected exactly one element for params: " selector structure))
|
||||||
res
|
(first res)
|
||||||
))
|
))
|
||||||
|
|
||||||
(defn select-one!
|
(defn select-one!
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue