aboutsummaryrefslogtreecommitdiff
path: root/service
diff options
context:
space:
mode:
authorr <r@freesoftwareextremist.com>2021-01-30 16:54:37 +0000
committerr <r@freesoftwareextremist.com>2021-01-30 16:55:55 +0000
commit6ddcb16694424ec5da9311d81388676e55700290 (patch)
tree1dc7558957748acad33f329606dbc0ecba6f9712 /service
parent4f1425febf6efb45eaf91aff19b215b8c7e77bec (diff)
downloadbloat-6ddcb16694424ec5da9311d81388676e55700290.tar.gz
bloat-6ddcb16694424ec5da9311d81388676e55700290.zip
Add username to page title
Makes it easier to search a user page in browser history
Diffstat (limited to 'service')
-rw-r--r--service/service.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/service/service.go b/service/service.go
index 8149f33..ebfc8c7 100644
--- a/service/service.go
+++ b/service/service.go
@@ -508,7 +508,7 @@ func (s *service) UserPage(c *client, id string, pageType string,
}
}
- commonData := s.getCommonData(c, user.DisplayName)
+ commonData := s.getCommonData(c, user.DisplayName+" @"+user.Acct)
data := &renderer.UserData{
User: user,
IsCurrent: isCurrent,