mirror of https://github.com/vector-im/riot-web
Allow reacting to stickers
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>pull/21833/head
parent
0fb96fda6e
commit
b489a7c0d5
|
@ -31,13 +31,13 @@ export function isContentActionable(mxEvent) {
|
|||
// status is SENT before remote-echo, null after
|
||||
const isSent = !eventStatus || eventStatus === EventStatus.SENT;
|
||||
|
||||
if (isSent && mxEvent.getType() === 'm.room.message') {
|
||||
if (isSent) {
|
||||
if (mxEvent.getType() === 'm.room.message') {
|
||||
const content = mxEvent.getContent();
|
||||
if (
|
||||
content.msgtype &&
|
||||
content.msgtype !== 'm.bad.encrypted' &&
|
||||
content.hasOwnProperty('body')
|
||||
) {
|
||||
if (content.msgtype && content.msgtype !== 'm.bad.encrypted' && content.hasOwnProperty('body')) {
|
||||
return true;
|
||||
}
|
||||
} else if (mxEvent.getType() === 'm.sticker') {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue