Browse Source

Fix #51 - prevent duplicate attachments for remote statuses

closed-social-glitch-2
Eugen Rochko 7 years ago
parent
commit
4a670780f0
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      app/services/process_feed_service.rb

+ 4
- 0
app/services/process_feed_service.rb View File

@ -80,6 +80,10 @@ class ProcessFeedService < BaseService
entry.xpath('./xmlns:link[@rel="enclosure"]').each do |enclosure_link|
next if enclosure_link.attribute('href').nil?
media = MediaAttachment.where(status: status, remote_url: enclosure_link.attribute('href').value).first
next unless media.nil?
media = MediaAttachment.new(account: status.account, status: status, remote_url: enclosure_link.attribute('href').value)
media.file_remote_url = enclosure_link.attribute('href').value
media.save

Loading…
Cancel
Save