소스 검색

Update VideoThumbnail pipeline

Daniel Supernault 6 년 전
부모
커밋
e14e18e6b4
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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);