diff options
author | Eugen <eugen@zeonfederated.com> | 2017-02-08 18:05:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-08 18:05:46 +0100 |
commit | 942a2e7d68fc4909f3ea953e89c1b2647242b3ad (patch) | |
tree | c512e1dcb7adf4819d8f5f7a69822d3db5d02fb0 | |
parent | d96e031dfc0db84318af9f4371403cdcf5bc2804 (diff) |
Fix reblogs not having content warnings forwarded
-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 c08d80ea0..fb8f0976c 100644 --- a/app/helpers/atom_builder_helper.rb +++ b/app/helpers/atom_builder_helper.rb @@ -192,7 +192,7 @@ module AtomBuilderHelper # Statuses have content and author if stream_entry.target.is_a?(Status) - content xml, conditionally_formatted(stream_entry.target) + rich_content xml, stream_entry.target verb xml, stream_entry.target.verb published_at xml, stream_entry.target.created_at updated_at xml, stream_entry.target.updated_at |