Fixes notice: Undefined index: nobody in /src/Util/HTTPSignature.php on line 450

This commit is contained in:
Michael 2020-10-20 15:19:06 +00:00
parent 4719af6724
commit c9d79040cb
1 changed files with 1 additions and 1 deletions

View File

@ -447,7 +447,7 @@ class HTTPSignature
$curl_opts = $opts;
$curl_opts['header'] = $header;
if ($opts['nobody']) {
if (!empty($opts['nobody'])) {
$curlResult = DI::httpRequest()->head($request, $curl_opts);
} else {
$curlResult = DI::httpRequest()->get($request, $curl_opts);