diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-12-21 19:10:19 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-12-21 19:10:19 +0100 |
commit | c4bc5c8930f2a8985e7dafa5de800f154ed6f93f (patch) | |
tree | 34f2f811fc70408d2794b44791098a1097e770ba /app | |
parent | c128fcee1605118a1e1268b0c1c4e4e575584f61 (diff) |
Federated profile bio now formatted
Diffstat (limited to 'app')
-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 02876d5ad..036a72166 100644 --- a/app/helpers/atom_builder_helper.rb +++ b/app/helpers/atom_builder_helper.rb @@ -100,7 +100,7 @@ module AtomBuilderHelper def portable_contact(xml, account) xml['poco'].preferredUsername account.username xml['poco'].displayName(account.display_name) unless account.display_name.blank? - xml['poco'].note(account.note) unless account.note.blank? + xml['poco'].note(Formatter.instance.simplified_format(account)) unless account.note.blank? end def in_reply_to(xml, uri, url) |