mirror of
https://github.com/vector-im/element-web.git
synced 2024-11-17 05:55:00 +08:00
only allow editing of text messages
This commit is contained in:
parent
0070540b8a
commit
c0cfa8ad00
@ -47,5 +47,6 @@ export function isContentActionable(mxEvent) {
|
|||||||
|
|
||||||
export function canEditContent(mxEvent) {
|
export function canEditContent(mxEvent) {
|
||||||
return isContentActionable(mxEvent) &&
|
return isContentActionable(mxEvent) &&
|
||||||
|
mxEvent.getContent().msgtype === "m.text" &&
|
||||||
mxEvent.getSender() === MatrixClientPeg.get().getUserId();
|
mxEvent.getSender() === MatrixClientPeg.get().getUserId();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user