diff options
Diffstat (limited to 'scripts/create-import-video-file-job.ts')
-rw-r--r-- | scripts/create-import-video-file-job.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/create-import-video-file-job.ts b/scripts/create-import-video-file-job.ts index c8c6c6429..2b636014a 100644 --- a/scripts/create-import-video-file-job.ts +++ b/scripts/create-import-video-file-job.ts | |||
@@ -25,7 +25,7 @@ run() | |||
25 | async function run () { | 25 | async function run () { |
26 | await initDatabaseModels(true) | 26 | await initDatabaseModels(true) |
27 | 27 | ||
28 | const video = await VideoModel.loadByUUIDWithFile(program['video']) | 28 | const video = await VideoModel.loadByUUID(program['video']) |
29 | if (!video) throw new Error('Video not found.') | 29 | if (!video) throw new Error('Video not found.') |
30 | if (video.isOwned() === false) throw new Error('Cannot import files of a non owned video.') | 30 | if (video.isOwned() === false) throw new Error('Cannot import files of a non owned video.') |
31 | 31 | ||