Revert "Update src/Network/GuzzleResponse.php"

This reverts commit 79e667b3
This commit is contained in:
Philipp Holzer 2020-10-11 23:24:40 +02:00
parent 7a8baf1eea
commit ef06fab744
No known key found for this signature in database
GPG Key ID: 9A28B7D4FF5667BD
1 changed files with 6 additions and 1 deletions

View File

@ -89,7 +89,12 @@ class GuzzleResponse extends Response implements IHTTPResult, ResponseInterface
public function getContentType()
{
$contentTypes = $this->getHeader('Content-Type') ?? [];
return array_pop($contentTypes) ?? '';
$countTypes = count($contentTypes);
if ($countTypes > 0) {
return $contentTypes[$countTypes - 1];
} else {
return '';
}
}
/** {@inheritDoc} */