Skip to content

Commit

Permalink
Remove inline argument for temporary URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
mzur committed Aug 27, 2021
1 parent b54f76e commit f36c816
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TempUrlSwiftAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,6 @@ public function getTemporaryUrl($path, $expiration, $options)
$algo = Arr::get($options, 'algo', 'sha1');
$sig = hash_hmac($algo, $hmacBody, $this->tempUrlKey);

return "{$url}?temp_url_sig={$sig}&temp_url_expires={$expires}&inline";
return "{$url}?temp_url_sig={$sig}&temp_url_expires={$expires}";
}
}

0 comments on commit f36c816

Please sign in to comment.