Browse Source

In remove_remote, exclude removed media attachments. (#5626)

pull/4/head
Naoki Kosaka 6 years ago
committed by Eugen Rochko
parent
commit
4c0a85ef9b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lib/tasks/mastodon.rake

+ 1
- 1
lib/tasks/mastodon.rake View File

@ -81,7 +81,7 @@ namespace :mastodon do
task remove_remote: :environment do
time_ago = ENV.fetch('NUM_DAYS') { 7 }.to_i.days.ago
MediaAttachment.where.not(remote_url: '').where('created_at < ?', time_ago).find_each do |media|
MediaAttachment.where.not(remote_url: '').where.not(file_file_name: nil).where('created_at < ?', time_ago).find_each do |media|
media.file.destroy
media.save
end

Loading…
Cancel
Save