Proxy settings removed

This commit is contained in:
Michael 2021-07-06 06:44:18 +00:00
parent 21cc2d28a3
commit dac27ead7a
4 changed files with 1 additions and 12 deletions

View 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');