Merge pull request #3073 from betagouv/fix-sentry-26
[Fix sentry-26] if file does not exist, filename should be nil
This commit is contained in:
commit
489cf7c855
1 changed files with 8 additions and 6 deletions
|
@ -25,14 +25,16 @@ class ProcedureLogoUploader < BaseUploader
|
|||
end
|
||||
|
||||
def filename
|
||||
if original_filename.present? || model.logo_secure_token
|
||||
if Flipflop.remote_storage?
|
||||
filename = "#{model.class.to_s.underscore}-#{secure_token}.#{file.extension.downcase}"
|
||||
else
|
||||
filename = "logo-#{secure_token}.#{file.extension.downcase}"
|
||||
if file.present?
|
||||
if original_filename.present? || model.logo_secure_token
|
||||
if Flipflop.remote_storage?
|
||||
filename = "#{model.class.to_s.underscore}-#{secure_token}.#{file.extension.downcase}"
|
||||
else
|
||||
filename = "logo-#{secure_token}.#{file.extension.downcase}"
|
||||
end
|
||||
end
|
||||
filename
|
||||
end
|
||||
filename
|
||||
end
|
||||
|
||||
private
|
||||
|
|
Loading…
Reference in a new issue