Skip to content
Snippets Groups Projects
Commit 624a9a71 authored by Eugen Rochko's avatar Eugen Rochko
Browse files

Re-add forgotten <author> element on standalone <entry>

parent 1c351709
No related branches found
No related tags found
No related merge requests found
......@@ -68,6 +68,9 @@ class AtomSerializer
append_element(entry, 'published', stream_entry.created_at.iso8601)
append_element(entry, 'updated', stream_entry.updated_at.iso8601)
append_element(entry, 'title', stream_entry&.status&.title)
entry << author(stream_entry.account) if root
append_element(entry, 'activity:object-type', TagManager::TYPES[stream_entry.object_type])
append_element(entry, 'activity:verb', TagManager::VERBS[stream_entry.verb])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment