This commit is contained in:
Bruno Windels 2021-06-03 19:57:48 +02:00
parent 2eb2e4e9b3
commit 8d4d9c6e8d

View file

@ -122,6 +122,11 @@ export class BaseMessageTile extends SimpleTile {
return this._reactions;
}
get canReact() {
// TODO
return true;
}
react(key) {
return this._room.sendEvent("m.reaction", this._entry.annotate(key));
}