consider <p></p> as an empty message (#1264)

This commit is contained in:
Meisam 2021-07-26 18:21:48 +02:00 committed by GitHub
parent 0b333dd6b6
commit f07c9e2e00
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -73,7 +73,7 @@ func (m *MessageEvent) RenderAndSanitizeMessageBody() {
// Empty will return if this message's contents is empty.
func (m *MessageEvent) Empty() bool {
return m.Body == ""
return m.Body == "" || m.Body == "<p></p>"
}
// RenderBody will render markdown to html without any sanitization.