use textSerialize function to get model text

pull/21833/head
macekj 2020-12-02 15:01:44 -05:00
parent 200c061968
commit 27a853c586
1 changed files with 1 additions and 2 deletions

View File

@ -94,8 +94,7 @@ export function createMessageContent(model, permalinkCreator, replyToEvent) {
export function isQuickReaction(model) {
const parts = model.parts;
if (parts.length == 0) return false;
let text = parts[0].text;
text += parts[1] ? parts[1].text : "";
const text = textSerialize(model);
// shortcut takes the form "+:emoji:" or "+ :emoji:""
// can be in 1 or 2 parts
if (parts.length <= 2) {