Also format m.notice
This commit is contained in:
parent
a7165fe633
commit
017f30be65
1 changed files with 6 additions and 1 deletions
|
@ -108,7 +108,12 @@ class HTMLMessage extends MatrixEvent {
|
||||||
|
|
||||||
static canRender(event) {
|
static canRender(event) {
|
||||||
const content = event.content
|
const content = event.content
|
||||||
return event.type === "m.room.message" && content.msgtype === "m.text" && content.format === "org.matrix.custom.html" && content.formatted_body
|
return (
|
||||||
|
event.type === "m.room.message"
|
||||||
|
&& (content.msgtype === "m.text" || content.msgtype === "m.notice")
|
||||||
|
&& content.format === "org.matrix.custom.html"
|
||||||
|
&& content.formatted_body
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
canGroup() {
|
canGroup() {
|
||||||
|
|
Loading…
Reference in a new issue