diff options
Diffstat (limited to 'server/lib/video.ts')
-rw-r--r-- | server/lib/video.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/lib/video.ts b/server/lib/video.ts index 0a2b93cc0..1cfe4f27c 100644 --- a/server/lib/video.ts +++ b/server/lib/video.ts | |||
@@ -105,7 +105,7 @@ async function addOptimizeOrMergeAudioJob (video: MVideoUUID, videoFile: MVideoF | |||
105 | return addTranscodingJob(dataInput, jobOptions) | 105 | return addTranscodingJob(dataInput, jobOptions) |
106 | } | 106 | } |
107 | 107 | ||
108 | async function addTranscodingJob (payload: VideoTranscodingPayload, options: CreateJobOptions) { | 108 | async function addTranscodingJob (payload: VideoTranscodingPayload, options: CreateJobOptions = {}) { |
109 | await VideoJobInfoModel.increaseOrCreate(payload.videoUUID, 'pendingTranscode') | 109 | await VideoJobInfoModel.increaseOrCreate(payload.videoUUID, 'pendingTranscode') |
110 | 110 | ||
111 | return JobQueue.Instance.createJobWithPromise({ type: 'video-transcoding', payload: payload }, options) | 111 | return JobQueue.Instance.createJobWithPromise({ type: 'video-transcoding', payload: payload }, options) |