From 0912b61f70c0430483ffa6ba1026b26396481469 Mon Sep 17 00:00:00 2001 From: alwxndr Date: Thu, 22 Sep 2016 10:46:10 +0300 Subject: [PATCH] correct identicon in the group chat (#249) --- src/status_im/chat/views/message.cljs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/status_im/chat/views/message.cljs b/src/status_im/chat/views/message.cljs index 9cd76d1b6a..8f469be81a 100644 --- a/src/status_im/chat/views/message.cljs +++ b/src/status_im/chat/views/message.cljs @@ -195,9 +195,9 @@ (defview member-photo [from] [photo-path [:photo-path from]] [view st/photo-view - [image {:source (if (s/blank? photo-path) - res/user-no-photo - {:uri photo-path}) + [image {:source {:uri (if (s/blank? photo-path) + (identicon from) + photo-path)} :style st/photo}]]) (defn incoming-group-message-body