diff --git a/lib/private/Http/Client/Response.php b/lib/private/Http/Client/Response.php
index 73c14c2926d42af8b1817c3646f660a93af2a6db..6786ecd6fc1bbce38b51be3749b6cfd9076a0464 100644
--- a/lib/private/Http/Client/Response.php
+++ b/lib/private/Http/Client/Response.php
@@ -71,7 +71,13 @@ class Response implements IResponse {
 	 * @return string
 	 */
 	public function getHeader(string $key): string {
-		return $this->response->getHeader($key)[0];
+		$headers = $this->response->getHeader($key);
+
+		if (count($headers) === 0) {
+			return '';
+		}
+
+		return $headers[0];
 	}
 
 	/**