diff --git a/app/helpers/atom_builder_helper.rb b/app/helpers/atom_builder_helper.rb index b9eb79fbd..132ea1573 100644 --- a/app/helpers/atom_builder_helper.rb +++ b/app/helpers/atom_builder_helper.rb @@ -190,9 +190,13 @@ module AtomBuilderHelper link_avatar xml, stream_entry.target end - # Statuses have content + # Statuses have content and author if [:note, :comment].include? stream_entry.target.object_type content xml, conditionally_formatted(stream_entry.target) + + author(xml) do + include_author xml, stream_entry.target.account + end end end end