diff options
Diffstat (limited to 'server/lib/schedulers')
-rw-r--r-- | server/lib/schedulers/update-videos-scheduler.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/server/lib/schedulers/update-videos-scheduler.ts b/server/lib/schedulers/update-videos-scheduler.ts index d123c3ceb..a964648fd 100644 --- a/server/lib/schedulers/update-videos-scheduler.ts +++ b/server/lib/schedulers/update-videos-scheduler.ts | |||
@@ -33,7 +33,9 @@ export class UpdateVideosScheduler extends AbstractScheduler { | |||
33 | } | 33 | } |
34 | } | 34 | } |
35 | 35 | ||
36 | private updateVideos () { | 36 | private async updateVideos () { |
37 | if (!await ScheduleVideoUpdateModel.areVideosToUpdate()) return undefined | ||
38 | |||
37 | return sequelizeTypescript.transaction(async t => { | 39 | return sequelizeTypescript.transaction(async t => { |
38 | const schedules = await ScheduleVideoUpdateModel.listVideosToUpdate(t) | 40 | const schedules = await ScheduleVideoUpdateModel.listVideosToUpdate(t) |
39 | 41 | ||