diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-07-14 04:07:47 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-14 04:07:47 +0200 |
commit | 2a176514be23398f7e784270ee5a23f814b0fa99 (patch) | |
tree | a3c4dc574978c03a920f5d89952d4406fe29eb18 /app/helpers | |
parent | 38e9662d78784d8286917f0d0e47d76d0df916df (diff) |
Display full acct on public status pages, always (#8011)
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/stream_entries_helper.rb | 2 |
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}" |