diff options
author | FChannel <> | 2021-07-25 14:24:02 -0700 |
---|---|---|
committer | FChannel <> | 2021-07-25 14:24:02 -0700 |
commit | 6c3de825cb50ebcf4c464a742b5480414b8173c4 (patch) | |
tree | a414bc29a8d58f81bc58d5d7d94fce2cec72ee64 /client.go | |
parent | 74b29610d09b05b3f563bb84e8ec65b534c2ee83 (diff) |
fixed quote parsing bug
Diffstat (limited to 'client.go')
-rw-r--r-- | client.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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;" |