From: Naoki Kosaka Date: Wed, 8 Nov 2017 14:19:22 +0000 (+0900) Subject: In remove_remote, exclude removed media attachments. (#5626) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=4c0a85ef9bbb01f28e0ed776df5c989c87428edd;p=mastodon.git In remove_remote, exclude removed media attachments. (#5626) --- diff --git a/lib/tasks/mastodon.rake b/lib/tasks/mastodon.rake index 5614ddf48..4d519bf90 100644 --- a/lib/tasks/mastodon.rake +++ b/lib/tasks/mastodon.rake @@ -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