Catch exceptions for image proxy

This commit is contained in:
Frederic Guillot 2015-05-17 13:26:51 -04:00
parent a78cf795b6
commit a1e4432881

View File

@ -50,6 +50,8 @@ function addProxyToTags($html, $website, $proxy_images, $cloak_referrer)
function download($url)
{
try {
if ((bool) Config\get('debug_mode')) {
Logger::enable();
}
@ -58,6 +60,8 @@ function download($url)
$client->setUserAgent(Config\HTTP_USER_AGENT);
$client->enablePassthroughMode();
$client->execute($url);
}
catch (\PicoFeed\Client\ClientException $e) {}
Config\write_debug();
}