X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=application%2FThumbnailer.php;h=5aec23c8d7b6bbf59305f3e651a689cd3d781a21;hb=336f15e8baeaba0c1605985cdd7f05980cf80696;hp=37ed97a18bf521f6b6e66b0bc4e32a5083a8f01d;hpb=1004742f09b55ff781c13745781b9a7e90986faa;p=github%2Fshaarli%2FShaarli.git diff --git a/application/Thumbnailer.php b/application/Thumbnailer.php index 37ed97a1..5aec23c8 100644 --- a/application/Thumbnailer.php +++ b/application/Thumbnailer.php @@ -3,9 +3,8 @@ namespace Shaarli; use Shaarli\Config\ConfigManager; -use WebThumbnailer\Exception\WebThumbnailerException; -use WebThumbnailer\WebThumbnailer; use WebThumbnailer\Application\ConfigManager as WTConfigManager; +use WebThumbnailer\WebThumbnailer; /** * Class Thumbnailer @@ -27,6 +26,7 @@ class Thumbnailer 'instagram.com', 'pinterest.com', 'pinterest.fr', + 'soundcloud.com', 'tumblr.com', 'deviantart.com', ]; @@ -55,7 +55,7 @@ class Thumbnailer $this->conf = $conf; if (! $this->checkRequirements()) { - $this->conf->set('thumbnails.enabled', false); + $this->conf->set('thumbnails.mode', Thumbnailer::MODE_NONE); $this->conf->write(true); // TODO: create a proper error handling system able to catch exceptions... die(t( @@ -89,7 +89,7 @@ class Thumbnailer try { return $this->wt->thumbnail($url); - } catch (WebThumbnailerException $e) { + } catch (\Throwable $e) { // Exceptions are only thrown in debug mode. error_log(get_class($e) . ': ' . $e->getMessage()); }