return false to exit event, imgPath holds the path

This commit is contained in:
Mikael Nordfeldth 2016-07-21 00:27:22 +02:00
parent 13e1f0a561
commit d230d332cf
1 changed files with 3 additions and 2 deletions

View File

@ -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) {