mirror of https://github.com/vector-im/riot-web
use textSerialize function to get model text
parent
200c061968
commit
27a853c586
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue