aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/lib/job-queue/handlers
diff options
context:
space:
mode:
Diffstat (limited to 'server/lib/job-queue/handlers')
-rw-r--r--server/lib/job-queue/handlers/video-channel-import.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/server/lib/job-queue/handlers/video-channel-import.ts b/server/lib/job-queue/handlers/video-channel-import.ts
index c3dd8a688..035f88e96 100644
--- a/server/lib/job-queue/handlers/video-channel-import.ts
+++ b/server/lib/job-queue/handlers/video-channel-import.ts
@@ -37,6 +37,7 @@ export async function processVideoChannelImport (job: Job) {
37 await synchronizeChannel({ 37 await synchronizeChannel({
38 channel: videoChannel, 38 channel: videoChannel,
39 externalChannelUrl: payload.externalChannelUrl, 39 externalChannelUrl: payload.externalChannelUrl,
40 channelSync 40 channelSync,
41 videosCountLimit: CONFIG.IMPORT.VIDEO_CHANNEL_SYNCHRONIZATION.FULL_SYNC_VIDEOS_LIMIT
41 }) 42 })
42} 43}