about summary refs log tree commit diff
path: root/app/views/statuses
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2020-02-03 18:44:54 +0100
committermultiple creatures <dev@multiple-creature.party>2020-02-21 02:48:14 -0600
commit804d30939f52b6fdbb70f97a386a6c0f19cf87e2 (patch)
treed3d9e656b176fc5c28436b9867f378953daf76c4 /app/views/statuses
parentb2cb81e54fc06361e8597f862e09d4606e30f3dc (diff)
Fix punycode being rendered instead of unicode in some places (#13030)
Diffstat (limited to 'app/views/statuses')
-rw-r--r--app/views/statuses/show.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/statuses/show.html.haml b/app/views/statuses/show.html.haml
index 704e37a3d..fbeaa3d72 100644
--- a/app/views/statuses/show.html.haml
+++ b/app/views/statuses/show.html.haml
@@ -10,7 +10,7 @@
 
   = opengraph 'og:site_name', site_title
   = opengraph 'og:type', 'article'
-  = opengraph 'og:title', "#{display_name(@account)} (@#{@account.local_username_and_domain})"
+  = opengraph 'og:title', "#{display_name(@account)} (#{acct(@account)})"
   = opengraph 'og:url', short_account_status_url(@account, @status)
 
   = render 'og_description', activity: @status