Skip to content

Commit 103c4b4

Browse files
authored
chore: decode emoji-hash and bio from contact payload (#19030)
1 parent 0828e9a commit 103c4b4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/status_im/contexts/chat/contacts/events.cljs

+3-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@
2323
:blocked? (oops/oget js-contact "blocked")
2424
:added? (oops/oget js-contact "added")
2525
:has-added-us? (oops/oget js-contact "hasAddedUs")
26-
:mutual? (oops/oget js-contact "mutual")})
26+
:mutual? (oops/oget js-contact "mutual")
27+
:emoji-hash (oops/oget js-contact "emojiHash")
28+
:bio (oops/oget js-contact "bio")})
2729

2830
(defn prepare-events-for-contact
2931
[db chats-js]

0 commit comments

Comments
 (0)