Browse Source

Update VideoThumbnail pipeline

Daniel Supernault 6 years ago
parent
commit
e14e18e6b4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Jobs/VideoPipeline/VideoThumbnail.php

+ 1 - 1
app/Jobs/VideoPipeline/VideoThumbnail.php

@@ -42,7 +42,7 @@ class VideoThumbnail implements ShouldQueue
         $name = last($path);
         try {
             $t = explode('.', $name);
-            $t = $t[0].'_thumb.png';
+            $t = $t[0].'_thumb.jpeg';
             $i = count($path) - 1;
             $path[$i] = $t;
             $save = implode('/', $path);