mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2025-02-16 19:15:16 +00:00
Invalid title for status page causing 500
This commit is contained in:
parent
7f7cce3bb8
commit
a1242cd83f
1 changed files with 1 additions and 1 deletions
|
@ -430,7 +430,7 @@ def status_page(request, username, status_id):
|
|||
return JsonResponse(status.to_activity(), encoder=ActivityEncoder)
|
||||
|
||||
data = {
|
||||
'title': status.type,
|
||||
'title': 'Status by %s' % user.username,
|
||||
'status': status,
|
||||
}
|
||||
return TemplateResponse(request, 'status.html', data)
|
||||
|
|
Loading…
Reference in a new issue