don't show reactions for redacted messages

This commit is contained in:
Bruno Windels 2021-06-24 14:49:43 +02:00
parent 787308375c
commit 5984e8dd6d

View file

@ -115,7 +115,9 @@ export class BaseMessageTile extends SimpleTile {
} }
get reactions() { get reactions() {
return this._reactions; if (this.shape !== "redacted") {
return this._reactions;
}
} }
get canReact() { get canReact() {