diff options
Diffstat (limited to 'app/views/stream_entries')
-rw-r--r-- | app/views/stream_entries/show.atom.ruby | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/stream_entries/show.atom.ruby b/app/views/stream_entries/show.atom.ruby index e0e089f46..a298f3269 100644 --- a/app/views/stream_entries/show.atom.ruby +++ b/app/views/stream_entries/show.atom.ruby @@ -1,9 +1,9 @@ Nokogiri::XML::Builder.new do |xml| entry(xml, true) do author(xml) do - include_author xml, @entry.account + include_author xml, @stream_entry.account end - include_entry xml, @entry + include_entry xml, @stream_entry end end.to_xml |