Check for author id rather than conversation id
This commit is contained in:
parent
c780c12df7
commit
4c449019f8
1 changed files with 7 additions and 3 deletions
|
@ -54,9 +54,13 @@
|
|||
);
|
||||
|
||||
const targetMessage = messages.find(m => {
|
||||
const mcid = m.isOutgoing()
|
||||
? ConversationController.getOurConversationId()
|
||||
: m.get('conversationId');
|
||||
const contact = m.getContact();
|
||||
|
||||
if (!contact) {
|
||||
return false;
|
||||
}
|
||||
|
||||
const mcid = contact.get('id');
|
||||
const recid = ConversationController.getConversationId(
|
||||
reaction.get('targetAuthorE164') || reaction.get('targetAuthorUuid')
|
||||
);
|
||||
|
|
Loading…
Add table
Reference in a new issue