From 6c3de825cb50ebcf4c464a742b5480414b8173c4 Mon Sep 17 00:00:00 2001 From: FChannel <> Date: Sun, 25 Jul 2021 14:24:02 -0700 Subject: fixed quote parsing bug --- client.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'client.go') diff --git a/client.go b/client.go index 4f2fd70..03f54fa 100644 --- a/client.go +++ b/client.go @@ -747,7 +747,7 @@ func ParseLinkComments(db *sql.DB, board Actor, op string, content string, threa // if the quoted content is local get it // else get it from the database if thread.Id == link { - quoteTitle = thread.Content + quoteTitle = ParseLinkTitle(board.Outbox, op, thread.Content) } else { for _, e := range thread.Replies.OrderedItems { if e.Id == parsedLink { @@ -765,7 +765,7 @@ func ParseLinkComments(db *sql.DB, board Actor, op string, content string, threa } } } - + var style string if board.Restricted { style = "color: #af0a0f;" -- cgit v1.2.3