Dont try to use nil as a function
Signed-off-by: Andrea Maria Piana <andrea.maria.piana@gmail.com>
This commit is contained in:
parent
4a4af53876
commit
e6c5dd6c81
|
@ -114,7 +114,7 @@
|
||||||
(map #(or (get all-contacts %)
|
(map #(or (get all-contacts %)
|
||||||
(public-key->new-contact %)))
|
(public-key->new-contact %)))
|
||||||
(sort-by (comp clojure.string/lower-case :name))
|
(sort-by (comp clojure.string/lower-case :name))
|
||||||
(map #(if (admins (:public-key %))
|
(map #(if (get admins (:public-key %))
|
||||||
(assoc % :admin? true)
|
(assoc % :admin? true)
|
||||||
%)))))
|
%)))))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue