Skip to content
Snippets Groups Projects
Commit 1efa8e48 authored by Eugen's avatar Eugen Committed by GitHub
Browse files

Fix enclosures not being parsed for reblogged statuses

parent aca988a1
Branches feature/quarantine
Tags
No related merge requests found
......@@ -36,9 +36,13 @@ class ProcessFeedService < BaseService
end
# If we added a status, go through accounts it mentions and create respective relations
# Also record all media attachments for the status and for the reblogged status if present
unless status.new_record?
record_remote_mentions(status, entry.xpath('./xmlns:link[@rel="mentioned"]'))
process_attachments(entry, status)
process_attachments(entry.xpath('./activity:object'), status.reblog) if status.reblog?
DistributionWorker.perform_async(status.id)
end
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment