aboutsummaryrefslogtreecommitdiff
path: root/service
diff options
context:
space:
mode:
Diffstat (limited to 'service')
-rw-r--r--service/service.go12
1 files changed, 11 insertions, 1 deletions
diff --git a/service/service.go b/service/service.go
index 7088a9b..8b5562d 100644
--- a/service/service.go
+++ b/service/service.go
@@ -246,7 +246,17 @@ func (svc *service) ServeThreadPage(ctx context.Context, client io.Writer, c *ma
return
}
- data := renderer.NewThreadPageTemplateData(status, context, reply, id)
+ var content string
+ if reply {
+ content += status.Account.Acct + " "
+ for _, m := range status.Mentions {
+ content += m.Acct + " "
+ }
+ }
+
+ fmt.Println("content", content)
+
+ data := renderer.NewThreadPageTemplateData(status, context, reply, id, content)
err = svc.renderer.RenderThreadPage(ctx, client, data)
if err != nil {
return