Fix selectedReaction which is now always undefined

This commit is contained in:
Josh Perez 2020-08-13 18:19:04 -04:00 committed by GitHub
parent 3615096497
commit 02607edfff
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -604,7 +604,7 @@
const selectedReaction = (
(this.get('reactions') || []).find(
re => re.fromId === this.OUR_NUMBER
re => re.fromId === ConversationController.getOurConversationId()
) || {}
).emoji;