summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/Config/LegacyGuzzleResponse.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Config/LegacyGuzzleResponse.php b/lib/Config/LegacyGuzzleResponse.php
index d9f6102ee..9358eba15 100644
--- a/lib/Config/LegacyGuzzleResponse.php
+++ b/lib/Config/LegacyGuzzleResponse.php
@@ -81,6 +81,6 @@ class LegacyGuzzleResponse implements ResponseInterface
*/
public function getHeader($name)
{
- return $this->response->getHeader($name);
+ return current($this->response->getHeader($name));
}
}