fix community invite link is not resolved (#12956)

This commit is contained in:
Parvesh Monu 2021-12-28 16:38:42 +05:30 committed by GitHub
parent e45f959c27
commit 44b8a4c0f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 4 deletions

View File

@ -42,11 +42,15 @@
[{:keys [db]} community-id] [{:keys [db]} community-id]
{:db (community-failed-to-resolve db community-id)}) {:db (community-failed-to-resolve db community-id)})
(defn community-link [id]
(str "https://join.status.im/c/" id))
(fx/defn handle-community-resolved (fx/defn handle-community-resolved
{:events [::community-resolved]} {:events [::community-resolved]}
[{:keys [db] :as cofx} community-id community] [{:keys [db] :as cofx} community-id community]
(fx/merge cofx (fx/merge cofx
{:db (community-resolved db community-id)} {:db (community-resolved db community-id)
:dispatch [::cache-link-preview-data (community-link community-id) community]}
(models.communities/handle-community community))) (models.communities/handle-community community)))
(fx/defn resolve-community-info (fx/defn resolve-community-info
@ -78,9 +82,6 @@
:link-previews-cache :link-previews-cache
(assoc (get multiaccount :link-previews-cache {}) site data))) (assoc (get multiaccount :link-previews-cache {}) site data)))
(defn community-link [id]
(str "https://join.status.im/c/" id))
(defn cache-community-preview-data (defn cache-community-preview-data
[{:keys [id] :as community}] [{:keys [id] :as community}]
(re-frame/dispatch [::cache-link-preview-data (re-frame/dispatch [::cache-link-preview-data