From 804d30939f52b6fdbb70f97a386a6c0f19cf87e2 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Mon, 3 Feb 2020 18:44:54 +0100 Subject: Fix punycode being rendered instead of unicode in some places (#13030) --- app/views/accounts/show.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/views/accounts/show.html.haml') diff --git a/app/views/accounts/show.html.haml b/app/views/accounts/show.html.haml index bcfd3ff79..c54f66fe4 100644 --- a/app/views/accounts/show.html.haml +++ b/app/views/accounts/show.html.haml @@ -1,5 +1,5 @@ - content_for :page_title do - = "#{display_name(@account)} (@#{@account.local_username_and_domain})" + = "#{display_name(@account)} (#{acct(@account)})" - content_for :header_tags do %meta{ name: 'description', content: account_description(@account) }/ -- cgit