Browse Source

Display full acct on public status pages, always (#8011)

pull/4/head
Eugen Rochko 5 years ago
committed by GitHub
parent
commit
2a176514be
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 3 deletions
  1. +1
    -1
      app/helpers/stream_entries_helper.rb
  2. +3
    -2
      spec/helpers/stream_entries_helper_spec.rb

+ 1
- 1
app/helpers/stream_entries_helper.rb View File

@ -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}"

+ 3
- 2
spec/helpers/stream_entries_helper_spec.rb View File

@ -58,13 +58,14 @@ RSpec.describe StreamEntriesHelper, type: :helper do
expect(acct).to eq '@user@foreign_server.com'
end
it 'is the shortname for non embedded local accounts' do
it 'is fully qualified for non embedded local accounts' do
allow(Rails.configuration.x).to receive(:local_domain).and_return('local_domain')
set_not_embedded_view
account = Account.new(domain: nil, username: 'user')
acct = helper.acct(account)
expect(acct).to eq '@user'
expect(acct).to eq '@user@local_domain'
end
end

Loading…
Cancel
Save