Skip to content
Snippets Groups Projects
Unverified Commit 75c4ab9d authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Remove "nsfw" category for sensitive statuses in OStatus serializer (#7048)

Fix #7011
parent 4ca2f73b
No related branches found
No related tags found
No related merge requests found
......@@ -364,8 +364,6 @@ class OStatus::AtomSerializer
append_element(entry, 'category', nil, term: tag.name)
end
append_element(entry, 'category', nil, term: 'nsfw') if status.sensitive?
status.media_attachments.each do |media|
append_element(entry, 'link', nil, rel: :enclosure, type: media.file_content_type, length: media.file_file_size, href: full_asset_url(media.file.url(:original, false)))
end
......
......@@ -7,7 +7,5 @@ class ProcessHashtagsService < BaseService
tags.map { |str| str.mb_chars.downcase }.uniq(&:to_s).each do |tag|
status.tags << Tag.where(name: tag).first_or_initialize(name: tag)
end
status.update(sensitive: true) if tags.include?('nsfw')
end
end
......@@ -386,12 +386,6 @@ RSpec.describe OStatus::AtomSerializer do
expect(entry.category[:term]).to eq 'tag'
end
it 'appends category element for NSFW if status is sensitive' do
status = Fabricate(:status, sensitive: true)
entry = OStatus::AtomSerializer.new.entry(status.stream_entry)
expect(entry.category[:term]).to eq 'nsfw'
end
it 'appends link elements for media attachments' do
file = attachment_fixture('attachment.jpg')
media_attachment = Fabricate(:media_attachment, file: file)
......
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