mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-19 13:23:13 +00:00
In remove_remote, exclude removed media attachments. (#5626)
This commit is contained in:
parent
64cc129225
commit
4c0a85ef9b
|
@ -81,7 +81,7 @@ namespace :mastodon do
|
||||||
task remove_remote: :environment do
|
task remove_remote: :environment do
|
||||||
time_ago = ENV.fetch('NUM_DAYS') { 7 }.to_i.days.ago
|
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.file.destroy
|
||||||
media.save
|
media.save
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue