From: Mikael Nordfeldth Date: Wed, 20 Jul 2016 22:27:22 +0000 (+0200) Subject: return false to exit event, imgPath holds the path X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d230d332cf392edfda823d29c93489e2ef739a96;p=quix0rs-gnu-social.git return false to exit event, imgPath holds the path --- diff --git a/plugins/VideoThumbnails/VideoThumbnailsPlugin.php b/plugins/VideoThumbnails/VideoThumbnailsPlugin.php index 30b62677ee..5b96653db1 100644 --- a/plugins/VideoThumbnails/VideoThumbnailsPlugin.php +++ b/plugins/VideoThumbnails/VideoThumbnailsPlugin.php @@ -58,8 +58,9 @@ class VideoThumbnailsPlugin extends Plugin try { // Exception thrown if no thumbnail found $thumb = File_thumbnail::byFile($file, false); - // If getPath doesn't throw an exception, we have a working locally stored thumbnail - return $thumb->getPath(); + $imgPath = $thumb->getPath(); + // If getPath didn't throw an exception, we have a working locally stored thumbnail + return false; } catch (NoResultException $e) { // Alright, no thumbnail found, so let's create one. } catch (InvalidFilenameException $e) {