Merge pull request #257 from status-im/bug/#249
Correct identicon in a group chat (#249)
Former-commit-id: 435cf994d7
This commit is contained in:
commit
36438c7117
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue