Browse Source

Include <id> (identical value to <uri>) on person-type objects in Atom

This might help with GS compatibility
closed-social-glitch-2
Eugen Rochko 7 years ago
parent
commit
6c05e3063a
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      app/helpers/atom_builder_helper.rb

+ 2
- 1
app/helpers/atom_builder_helper.rb View File

@ -158,11 +158,12 @@ module AtomBuilderHelper
if stream_entry.targeted? if stream_entry.targeted?
target(xml) do target(xml) do
simple_id xml, TagManager.instance.uri_for(stream_entry.target)
if stream_entry.target.object_type == :person if stream_entry.target.object_type == :person
include_author xml, stream_entry.target include_author xml, stream_entry.target
else else
object_type xml, stream_entry.target.object_type object_type xml, stream_entry.target.object_type
simple_id xml, TagManager.instance.uri_for(stream_entry.target)
title xml, stream_entry.target.title title xml, stream_entry.target.title
link_alternate xml, TagManager.instance.url_for(stream_entry.target) link_alternate xml, TagManager.instance.url_for(stream_entry.target)
end end

Loading…
Cancel
Save