|
|
@ -66,6 +66,8 @@ class BackupService < BaseService
|
|
|
|
def dump_media_attachments!(tar)
|
|
|
|
def dump_media_attachments!(tar)
|
|
|
|
MediaAttachment.attached.where(account: account).reorder(nil).find_in_batches do |media_attachments|
|
|
|
|
MediaAttachment.attached.where(account: account).reorder(nil).find_in_batches do |media_attachments|
|
|
|
|
media_attachments.each do |m|
|
|
|
|
media_attachments.each do |m|
|
|
|
|
|
|
|
|
next unless m.file&.path
|
|
|
|
|
|
|
|
|
|
|
|
download_to_tar(tar, m.file, m.file.path)
|
|
|
|
download_to_tar(tar, m.file, m.file.path)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|