mirror of
https://github.com/mastodon/mastodon.git
synced 2025-01-11 12:22:49 +01:00
Fix batch attachment deletion when using OpenStack Swift (#27554)
This commit is contained in:
parent
4fc2523546
commit
4c38706474
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ class AttachmentBatch
|
|||
end
|
||||
when :fog
|
||||
logger.debug { "Deleting #{attachment.path(style)}" }
|
||||
attachment.directory.files.new(key: attachment.path(style)).destroy
|
||||
attachment.send(:directory).files.new(key: attachment.path(style)).destroy
|
||||
when :azure
|
||||
logger.debug { "Deleting #{attachment.path(style)}" }
|
||||
attachment.destroy
|
||||
|
|
Loading…
Reference in a new issue