about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--app/services/process_feed_service.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/services/process_feed_service.rb b/app/services/process_feed_service.rb
index 0dd22fa22..97033a004 100644
--- a/app/services/process_feed_service.rb
+++ b/app/services/process_feed_service.rb
@@ -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