We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d4aba09 + 37d3ddd commit 0494886Copy full SHA for 0494886
src/PSS/Entities/Download.php
@@ -26,7 +26,7 @@ public function getStream()
26
*/
27
public function getContentType()
28
{
29
- $contentType = $this->response->getHeaders()['Content-Type'];
+ $contentType = array_change_key_case($this->response->getHeaders())['content-type'];
30
if ($contentType) {
31
return $contentType;
32
}
0 commit comments