about summary refs log tree commit diff
path: root/app/helpers/stream_entries_helper.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2018-07-14 04:07:47 +0200
committerGitHub <noreply@github.com>2018-07-14 04:07:47 +0200
commit2a176514be23398f7e784270ee5a23f814b0fa99 (patch)
treea3c4dc574978c03a920f5d89952d4406fe29eb18 /app/helpers/stream_entries_helper.rb
parent38e9662d78784d8286917f0d0e47d76d0df916df (diff)
Display full acct on public status pages, always (#8011)
Diffstat (limited to 'app/helpers/stream_entries_helper.rb')
-rw-r--r--app/helpers/stream_entries_helper.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/stream_entries_helper.rb b/app/helpers/stream_entries_helper.rb
index a91a28935..05cea73d7 100644
--- a/app/helpers/stream_entries_helper.rb
+++ b/app/helpers/stream_entries_helper.rb
@@ -67,7 +67,7 @@ module StreamEntriesHelper
   end
 
   def acct(account)
-    if embedded_view? && account.local?
+    if account.local?
       "@#{account.acct}@#{Rails.configuration.x.local_domain}"
     else
       "@#{account.acct}"