chore: decode emoji-hash and bio from contact payload (#19030)

This commit is contained in:
Sean Hagstrom 2024-03-12 17:42:11 +00:00 committed by GitHub
parent 0828e9aa55
commit 103c4b4653
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -23,7 +23,9 @@
:blocked? (oops/oget js-contact "blocked")
:added? (oops/oget js-contact "added")
:has-added-us? (oops/oget js-contact "hasAddedUs")
:mutual? (oops/oget js-contact "mutual")})
:mutual? (oops/oget js-contact "mutual")
:emoji-hash (oops/oget js-contact "emojiHash")
:bio (oops/oget js-contact "bio")})
(defn prepare-events-for-contact
[db chats-js]