mirror of
https://github.com/mastodon/mastodon.git
synced 2025-02-07 15:35:06 +00:00
19 lines
352 B
Ruby
19 lines
352 B
Ruby
![]() |
# 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
|