Dont count 1-to-1 topics if not enabled

This commit is contained in:
Andrea Maria Piana 2019-02-04 10:53:55 +01:00
parent e2f53418f3
commit 49035af201
No known key found for this signature in database
GPG Key ID: AA6CCA6DE0E06424
2 changed files with 4 additions and 3 deletions

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)))

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]