]> git.mxchange.org Git - friendica.git/blobdiff - src/Network/HTTPRequest.php
Merge pull request #9242 from nupplaphil/bug/9142-message-id
[friendica.git] / src / Network / HTTPRequest.php
index a6155647636578f87f76320828ef900c9630cbaa..e4ff041039ed8ba225022000faa6af8f2c159af7 100644 (file)
@@ -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);
-       }
 }