From 650a87afd499eb29288175c3f439671986700832 Mon Sep 17 00:00:00 2001 From: Manuel Luypaert Date: Thu, 24 Sep 2020 12:21:34 +0100 Subject: [PATCH] Bugfix for batch other-names add/retract (commit cb1f4d7d, #304) --- ids/src/wormbase/ids/batch.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ids/src/wormbase/ids/batch.clj b/ids/src/wormbase/ids/batch.clj index 741c7764..0c1a94a7 100644 --- a/ids/src/wormbase/ids/batch.clj +++ b/ids/src/wormbase/ids/batch.clj @@ -224,7 +224,7 @@ (if (= (type value) clojure.lang.PersistentVector) (let [build-tx (fn [id attr ^String val] (vec [dt-transact-fn id attr val]))] (map #(build-tx eid attr %) value)) - [dt-transact-fn eid attr value])))) + (list [dt-transact-fn eid attr value]))))) (add-prov-maybe sp) (transact-fn db)))) conn