From 6846150cb48d080112981633d6dddabef5ce4439 Mon Sep 17 00:00:00 2001 From: FChannel <> Date: Sun, 25 Jul 2021 16:00:25 -0700 Subject: fixed bug with escaping html less than symbol for parsing content --- client.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'client.go') diff --git a/client.go b/client.go index 03f54fa..930cd6f 100644 --- a/client.go +++ b/client.go @@ -714,8 +714,10 @@ func ParseAttachment(obj ObjectBase, catalog bool) template.HTML { } func ParseContent(db *sql.DB, board Actor, op string, content string, thread ObjectBase) template.HTML { + + nContent := strings.ReplaceAll(content, `<`, "<") - nContent := ParseLinkComments(db, board, op, content, thread) + nContent = ParseLinkComments(db, board, op, nContent, thread) nContent = ParseCommentQuotes(nContent) -- cgit v1.2.3