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

lolsob-rspec
S.H 2023-06-26 23:38:19 +09:00 committed by GitHub
parent bcee25e36c
commit 2c6f88ad71
1 changed files with 1 additions and 1 deletions

View File

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