diff options
author | Matt Jankowski <mjankowski@thoughtbot.com> | 2017-04-10 16:58:06 -0400 |
---|---|---|
committer | Eugen <eugen@zeonfederated.com> | 2017-04-10 22:58:06 +0200 |
commit | 0687ab8ae3c2573ba2aa1d37f62e3583d0c7ab01 (patch) | |
tree | 24ea1de1856ec7f203f6f89c5b8231a5d37da2cb /app/helpers | |
parent | 64dbde0dbf8c5d3ce820f780644d46a6b18e6743 (diff) |
Clean up generation of account webfinger string (#1477)
* Consolidate webfinger string creation under Account#to_webfinger_s * Introduce Account#local_username_and_domain for consolidation
Diffstat (limited to 'app/helpers')
-rw-r--r-- | app/helpers/atom_builder_helper.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/helpers/atom_builder_helper.rb b/app/helpers/atom_builder_helper.rb index b750eeb07..185388ec9 100644 --- a/app/helpers/atom_builder_helper.rb +++ b/app/helpers/atom_builder_helper.rb @@ -160,7 +160,7 @@ module AtomBuilderHelper object_type xml, :person uri xml, TagManager.instance.uri_for(account) name xml, account.username - email xml, account.local? ? "#{account.acct}@#{Rails.configuration.x.local_domain}" : account.acct + email xml, account.local? ? account.local_username_and_domain : account.acct summary xml, account.note link_alternate xml, TagManager.instance.url_for(account) link_avatar xml, account |