diff --git a/lib/private/Http/Client/Client.php b/lib/private/Http/Client/Client.php index d19f1124a2..599bf0fb7e 100644 --- a/lib/private/Http/Client/Client.php +++ b/lib/private/Http/Client/Client.php @@ -154,7 +154,7 @@ class Client implements IClient { } $host = parse_url($uri, PHP_URL_HOST); - if ($host === false) { + if ($host === false || $host === null) { $this->logger->warning("Could not detect any host in $uri"); throw new LocalServerException('Could not detect any host'); }