Fix double-encoding of display name in title and e-mails (#7534)

master
Eugen Rochko 6 years ago committed by GitHub
parent 2beeea1e7d
commit 9422b3e0d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      app/helpers/stream_entries_helper.rb

@ -5,7 +5,11 @@ module StreamEntriesHelper
EMBEDDED_ACTION = 'embed'
def display_name(account, **options)
Formatter.instance.format_display_name(account, options)
if options[:custom_emojify]
Formatter.instance.format_display_name(account, options)
else
account.display_name.presence || account.username
end
end
def account_description(account)

Loading…
Cancel
Save