diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2020-02-03 18:44:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-03 18:44:54 +0100 |
commit | c253f5c57e3ad1929c70fb8adb00cb1bc4a2ef5f (patch) | |
tree | 11e09af8d73794101926bc146464c3ded8d5a94f /app/views/statuses | |
parent | c31d61d7f2d576b42ea82ab01470bce7e6e5a3a7 (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.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/statuses/show.html.haml b/app/views/statuses/show.html.haml index 0f22d106b..873df7fbd 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 |