Catch exceptions for image proxy
This commit is contained in:
parent
a78cf795b6
commit
a1e4432881
@ -50,6 +50,8 @@ function addProxyToTags($html, $website, $proxy_images, $cloak_referrer)
|
|||||||
|
|
||||||
function download($url)
|
function download($url)
|
||||||
{
|
{
|
||||||
|
try {
|
||||||
|
|
||||||
if ((bool) Config\get('debug_mode')) {
|
if ((bool) Config\get('debug_mode')) {
|
||||||
Logger::enable();
|
Logger::enable();
|
||||||
}
|
}
|
||||||
@ -58,6 +60,8 @@ function download($url)
|
|||||||
$client->setUserAgent(Config\HTTP_USER_AGENT);
|
$client->setUserAgent(Config\HTTP_USER_AGENT);
|
||||||
$client->enablePassthroughMode();
|
$client->enablePassthroughMode();
|
||||||
$client->execute($url);
|
$client->execute($url);
|
||||||
|
}
|
||||||
|
catch (\PicoFeed\Client\ClientException $e) {}
|
||||||
|
|
||||||
Config\write_debug();
|
Config\write_debug();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user