1
0
mirror of https://github.com/mastodon/mastodon synced 2024-12-16 07:38:12 +09:00
mastodon/app/workers/maintenance/uncache_media_worker.rb

19 lines
352 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class Maintenance::UncacheMediaWorker
include Sidekiq::Worker
sidekiq_options queue: 'pull'
def perform(media_attachment_id)
media = MediaAttachment.find(media_attachment_id)
return unless media.file.exists?
media.file.destroy
media.save
rescue ActiveRecord::RecordNotFound
true
end
end