1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-08 21:42:24 +03:00

allow editing emotes

This commit is contained in:
Bruno Windels
2019-06-14 11:01:34 +02:00
parent 2a7301fa8f
commit 0b17812b9c

View File

@@ -46,9 +46,12 @@ export function isContentActionable(mxEvent) {
}
export function canEditContent(mxEvent) {
return mxEvent.status !== EventStatus.CANCELLED &&
mxEvent.getType() === 'm.room.message' &&
mxEvent.getOriginalContent().msgtype === "m.text" &&
if (mxEvent.status === EventStatus.CANCELLED || mxEvent.getType() !== "m.room.message") {
return false;
}
const content = mxEvent.getOriginalContent();
const {msgtype} = content;
return (msgtype === "m.text" || msgtype === "m.emote") &&
mxEvent.getSender() === MatrixClientPeg.get().getUserId();
}