]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - plugins/VideoThumbnails/VideoThumbnailsPlugin.php
[TRANSLATION] Update license and copyright notice in translation files
[quix0rs-gnu-social.git] / plugins / VideoThumbnails / VideoThumbnailsPlugin.php
index 30b62677ee73af57cdbbe9d730494ada4ebe1b73..1ca49410f159ec6f21b38ee7b90e818b552ddfd4 100644 (file)
@@ -42,6 +42,8 @@ if (!defined('GNUSOCIAL')) { exit(1); }
 
 class VideoThumbnailsPlugin extends Plugin
 {
+    const PLUGIN_VERSION = '2.0.0';
+
     /*
      * This function should only extract an image from the video stream
      * and disregard any cropping or scaling in the resulting file, as
@@ -58,8 +60,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) {
@@ -98,7 +101,7 @@ class VideoThumbnailsPlugin extends Plugin
     public function onPluginVersion(array &$versions)
     {
         $versions[] = array('name' => 'Video Thumbnails',
-                            'version' => GNUSOCIAL_VERSION,
+                            'version' => self::PLUGIN_VERSION,
                             'author' => 'Mikael Nordfeldth',
                             'homepage' => 'https://www.gnu.org/software/social/',
                             'rawdescription' =>