Apply reactions to messages in "Notes to Self"

This commit is contained in:
Fedor Indutny 2021-05-11 10:06:19 -07:00 committed by GitHub
parent 09d7a253af
commit c2a0072fa1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3128,7 +3128,9 @@ export class ConversationModel extends window.Backbone
expireTimer,
profileKey
);
return message.sendSyncMessageOnly(dataMessage);
const result = await message.sendSyncMessageOnly(dataMessage);
window.Whisper.Reactions.onReaction(reactionModel);
return result;
}
const options = await this.getSendOptions();