X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FNetwork%2FHTTPRequest.php;h=e4ff041039ed8ba225022000faa6af8f2c159af7;hb=722aada460aa023212b7d97932fe338fe54861a8;hp=a6155647636578f87f76320828ef900c9630cbaa;hpb=55e169db498fe724c236113c8d2e9e1ad1856f75;p=friendica.git 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); - } }