소스 검색

视频预览

moshaorui 2 주 전
부모
커밋
f60e35e8fe
1개의 변경된 파일4개의 추가작업 그리고 2개의 파일을 삭제
  1. 4 2
      app/Console/Commands/GeneratePreviewVideo.php

+ 4 - 2
app/Console/Commands/GeneratePreviewVideo.php

@@ -92,7 +92,8 @@ class GeneratePreviewVideo extends Command
                     ->where('id', $item->id)
                     ->update([
                         'preview_url' => $uploadPath . '/' . $previewName,
-                        'status' => 1
+                        'status' => 1,
+                        'updated_at' => Carbon::now()
                     ]);
 
                 //删除本地文件
@@ -103,7 +104,8 @@ class GeneratePreviewVideo extends Command
                     ->where('id', $item->id)
                     ->update([
                         'remark' => $e->getMessage(),
-                        'status' => -1
+                        'status' => -1,
+                        'updated_at' => Carbon::now()
                     ]);
             }
         }