diff --git a/src/status_im/chat/models.cljs b/src/status_im/chat/models.cljs index aad56464ca..8559ebaa3e 100644 --- a/src/status_im/chat/models.cljs +++ b/src/status_im/chat/models.cljs @@ -271,7 +271,7 @@ (transport.filters/load-chat chat-id) (navigate-to-chat chat-id)))) -(def timeline-chat-id "@timeline") +(def timeline-chat-id "@timeline70bd746ddcc12beb96b2c9d572d0784ab137ffc774f5383e50585a932080b57cca0484b259e61cecbaa33a4c98a300a") (defn profile-chat-topic [public-key] (str "@" public-key)) diff --git a/src/status_im/contact/core.cljs b/src/status_im/contact/core.cljs index b63886f69e..6e3a927038 100644 --- a/src/status_im/contact/core.cljs +++ b/src/status_im/contact/core.cljs @@ -64,7 +64,10 @@ (assoc-in [public-key :nickname] (:nickname contact)))) % contacts)) - :dispatch-n (map (fn [{:keys [public-key]}] [:start-profile-chat public-key]) contacts)}) + :dispatch-n (map (fn [{:keys [public-key] :as contact}] + (when (contact.db/added? contact) + [:start-profile-chat public-key])) + contacts)}) (fx/defn upsert-contact [{:keys [db] :as cofx}