diff --git a/src/Network/HTTPRequest.php b/src/Network/HTTPRequest.php index a615564763..e4ff041039 100644 --- a/src/Network/HTTPRequest.php +++ b/src/Network/HTTPRequest.php @@ -475,14 +475,4 @@ class HTTPRequest implements IHTTPRequest DB_UPDATE_VERSION . '; ' . $this->baseUrl; } - - private function redirectBlocked(string $url = null) - { - $hosts = $this->config->get('system', 'no_redirect_hosts'); - if (empty($hosts)) { - return false; - } - - $hostlist = explode(',', $hosts); - } }