Fix syntax error

This commit is contained in:
Ryuta Kamizono 2020-05-19 01:04:22 +09:00
parent b472feddbc
commit 393df7425f
1 changed files with 2 additions and 2 deletions

View File

@ -80,8 +80,8 @@ module ActiveStorage
def url_for_direct_upload(key, expires_in:, content_type:, content_length:, checksum:)
instrument :url, key: key do |payload|
generated_url = object_for(key).presigned_url :put, expires_in: expires_in.to_i,
content_type: content_type, content_length: content_length, content_md5: checksum
whitelist_headers: ['content-length'], **upload_options
content_type: content_type, content_length: content_length, content_md5: checksum,
whitelist_headers: ["content-length"], **upload_options
payload[:url] = generated_url