Remove media attachment only when file was exist (#25586)

This commit is contained in:
S.H 2023-06-26 23:38:19 +09:00 committed by GitHub
parent bb4756c823
commit 7a25af64dd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -64,7 +64,7 @@ class AttachmentBatch
keys << attachment.style_name_as_path(style) keys << attachment.style_name_as_path(style)
when :filesystem when :filesystem
logger.debug { "Deleting #{attachment.path(style)}" } logger.debug { "Deleting #{attachment.path(style)}" }
FileUtils.remove_file(attachment.path(style)) FileUtils.remove_file(attachment.path(style), true)
when :fog when :fog
logger.debug { "Deleting #{attachment.path(style)}" } logger.debug { "Deleting #{attachment.path(style)}" }
attachment.directory.files.new(key: attachment.path(style)).destroy attachment.directory.files.new(key: attachment.path(style)).destroy