Catch exceptions for image proxy

This commit is contained in:
Frederic Guillot 2015-05-17 13:26:51 -04:00
parent a78cf795b6
commit a1e4432881
1 changed files with 11 additions and 7 deletions

View File

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