aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--client.go4
1 files changed, 2 insertions, 2 deletions
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;"