diff options
author | Claire <claire.github-309c@sitedethib.com> | 2023-04-05 19:31:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-05 19:31:49 +0200 |
commit | 9d08b81193d5be33365fb24db43aae54627c172b (patch) | |
tree | b477caf4cc29e561010bd7ec4d5115969f2031bf | |
parent | c76d19e00b683c91a06d6ba15d82a924601c7648 (diff) |
Fix user archive takeouts when using OpenStack Swift (#24431)
-rw-r--r-- | app/controllers/backups_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/backups_controller.rb b/app/controllers/backups_controller.rb index 0687b62c5..5891da6f6 100644 --- a/app/controllers/backups_controller.rb +++ b/app/controllers/backups_controller.rb @@ -13,7 +13,7 @@ class BackupsController < ApplicationController when :s3 redirect_to @backup.dump.expiring_url(10) when :fog - if Paperclip::Attachment.default_options.dig(:storage, :fog_credentials, :openstack_temp_url_key).present? + if Paperclip::Attachment.default_options.dig(:fog_credentials, :openstack_temp_url_key).present? redirect_to @backup.dump.expiring_url(Time.now.utc + 10) else redirect_to full_asset_url(@backup.dump.url) |