]> git.mxchange.org Git - friendica.git/blobdiff - src/Util/Proxy.php
Fix HTTPClient
[friendica.git] / src / Util / Proxy.php
index 12be746a687f1548b30208e9b3dc2872ff199dc6..443725a3d88f334c5ebe440ac60de0efb5db7d12 100644 (file)
@@ -72,8 +72,7 @@ class Proxy
         * Transform a remote URL into a local one.
         *
         * This function only performs the URL replacement on http URL and if the
-        * provided URL isn't local, "the isn't deactivated" (sic) and if the config
-        * system.proxy_disabled is set to false.
+        * provided URL isn't local
         *
         * @param string $url       The URL to proxyfy
         * @param string $size      One of the ProxyUtils::SIZE_* constants
@@ -91,11 +90,6 @@ class Proxy
                        return $url;
                }
 
-               // Is the proxy disabled?
-               if (DI::config()->get('system', 'proxy_disabled')) {
-                       return $url;
-               }
-
                // Image URL may have encoded ampersands for display which aren't desirable for proxy
                $url = html_entity_decode($url, ENT_NOQUOTES, 'utf-8');