From b52428d3196f54ee676141768b2200082079acd2 Mon Sep 17 00:00:00 2001 From: Roman Volosovskyi Date: Thu, 20 Apr 2017 12:55:00 +0300 Subject: [PATCH] fix #1049 --- src/status_im/group_settings/handlers.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/status_im/group_settings/handlers.cljs b/src/status_im/group_settings/handlers.cljs index d45788e960..711a7ddde1 100644 --- a/src/status_im/group_settings/handlers.cljs +++ b/src/status_im/group_settings/handlers.cljs @@ -155,7 +155,7 @@ (defn add-memebers [{:keys [current-chat-id selected-participants] :as db} _] (let [new-identities (map #(hash-map :identity %) selected-participants)] - (update db [:chats current-chat-id :contacts] concat new-identities))) + (update-in db [:chats current-chat-id :contacts] concat new-identities))) (defn add-members-to-chat! [{:keys [current-chat-id selected-participants]} _]