Dont count 1-to-1 topics if not enabled

This commit is contained in:
Andrea Maria Piana
2019-02-04 17:23:22 +01:00
parent e2f53418f3
commit 49035af201
2 changed files with 4 additions and 3 deletions
+3 -1
View File
@@ -3,6 +3,7 @@
(:require [cljs.spec.alpha :as spec]
[clojure.string :as s]
status-im.contact.db
[status-im.utils.config :as config]
[status-im.utils.clocks :as utils.clocks]
[status-im.constants :as constants]))
@@ -127,7 +128,8 @@
chats (into #{:discovery-topic}
(keys (filter (fn [[chat-id {:keys [topic one-to-one]}]]
(if one-to-one
chat-id
(and config/partitioned-topic-enabled?
chat-id)
topic))
(get db :transport/chats))))]
(= chats filters)))
+1 -2
View File
@@ -43,8 +43,7 @@
(receive-message now-in-s chat-id message))
(js-array->seq js-messages))]
(apply fx/merge cofx receive-message-fxs))
(do (log/error "Something went wrong" js-error js-messages)
cofx)))
(log/error "Something went wrong" js-error js-messages)))
(fx/defn remove-hash
[{:keys [db] :as cofx} envelope-hash]