diff options
Diffstat (limited to 'ui/messages')
-rw-r--r-- | ui/messages/parser/htmlparser.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ui/messages/parser/htmlparser.go b/ui/messages/parser/htmlparser.go index 9ca707f..4f3522a 100644 --- a/ui/messages/parser/htmlparser.go +++ b/ui/messages/parser/htmlparser.go @@ -118,6 +118,9 @@ func (parser *MatrixHTMLProcessor) HandleSelfClosingTag(tagName string, attrs ma func (parser *MatrixHTMLProcessor) HandleEndTag(tagName string) { tag := parser.openTags.Pop(tagName) + if tag == nil { + return + } switch tag.Tag { case "li", "blockquote": |