Browse Source

Fix backups failing when files are missing from media attachments (#13146)

Fixes #13123
master
ThibG 4 years ago
committed by GitHub
parent
commit
d91946ae13
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      app/services/backup_service.rb

+ 2
- 0
app/services/backup_service.rb View File

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

Loading…
Cancel
Save