From e47f839bfb7bc8eabfeb2cd2f4ba7a1dce71b08d Mon Sep 17 00:00:00 2001 From: andrey Date: Thu, 7 Oct 2021 09:41:35 +0200 Subject: [PATCH] [#12687] Icons in public chats and corresponding icons (default ones) of users are different Signed-off-by: andrey --- src/status_im/subs.cljs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/status_im/subs.cljs b/src/status_im/subs.cljs index bdcbd2ec83..38296a3ae3 100644 --- a/src/status_im/subs.cljs +++ b/src/status_im/subs.cljs @@ -1177,7 +1177,7 @@ (let [contact (or (get contacts id) (when (= id (:public-key multiaccount)) multiaccount) - (if identicon + (if (not (string/blank? identicon)) {:identicon identicon} (contact.db/public-key->new-contact id)))] (multiaccounts/displayed-photo contact))))