Merge pull request #9442 from annando/notice

Fixes notice:  Undefined index: nobody
This commit is contained in:
Philipp
2020-10-20 19:33:06 +02:00
committed by GitHub

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);