aboutsummaryrefslogtreecommitdiff
path: root/client.go
diff options
context:
space:
mode:
authorFChannel <>2021-07-25 14:24:02 -0700
committerFChannel <>2021-07-25 14:24:02 -0700
commit6c3de825cb50ebcf4c464a742b5480414b8173c4 (patch)
treea414bc29a8d58f81bc58d5d7d94fce2cec72ee64 /client.go
parent74b29610d09b05b3f563bb84e8ec65b534c2ee83 (diff)
fixed quote parsing bug
Diffstat (limited to 'client.go')
-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;"