Update atom_builder_helper.rb

This commit is contained in:
Anthony Bellew 2016-12-17 02:52:45 -07:00 committed by GitHub
parent e10998b64e
commit e701a46e06
1 changed files with 3 additions and 0 deletions

View File

@ -207,6 +207,7 @@ module AtomBuilderHelper
end
category(xml, 'nsfw') if stream_entry.target.sensitive?
category(xml, 'no_reblog') if stream_entry.target.no_reblog?
end
end
end
@ -228,6 +229,8 @@ module AtomBuilderHelper
end
category(xml, 'nsfw') if stream_entry.activity.sensitive?
category(xml, 'no_reblog') if stream_entry.activity.no_reblog?
end
private