Fix /me body rendering.

This commit is contained in:
Danila Fedorin 2021-07-14 18:10:59 -07:00
parent 038b101ed7
commit 025ab16668

View File

@ -26,7 +26,7 @@ export class TextTile extends BaseTextTile {
return null; return null;
} }
if (content.msgtype === "m.emote") { if (content.msgtype === "m.emote") {
val = `* ${this.displayName} ${body}`; val = `* ${this.displayName} ${val}`;
} }
return val; return val;
} }