aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/lib/schedulers
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2023-07-25 14:26:12 +0200
committerChocobozzz <me@florianbigard.com>2023-07-25 14:26:12 +0200
commit3b46eec8aeb95eb0dce763e3569c0509b1da7607 (patch)
treec5b638072fb903d9a7690e9174a6c2fb6f9b968f /server/lib/schedulers
parentf42dd5524b47e89d9b4491f784f05a99303cc934 (diff)
downloadPeerTube-3b46eec8aeb95eb0dce763e3569c0509b1da7607.tar.gz
PeerTube-3b46eec8aeb95eb0dce763e3569c0509b1da7607.tar.zst
PeerTube-3b46eec8aeb95eb0dce763e3569c0509b1da7607.zip
Remove unused param
Diffstat (limited to 'server/lib/schedulers')
-rw-r--r--server/lib/schedulers/videos-redundancy-scheduler.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/lib/schedulers/videos-redundancy-scheduler.ts b/server/lib/schedulers/videos-redundancy-scheduler.ts
index 24d340a73..91625ccb5 100644
--- a/server/lib/schedulers/videos-redundancy-scheduler.ts
+++ b/server/lib/schedulers/videos-redundancy-scheduler.ts
@@ -365,7 +365,7 @@ export class VideosRedundancyScheduler extends AbstractScheduler {
365 // We need more attributes and check if the video still exists 365 // We need more attributes and check if the video still exists
366 const getVideoOptions = { 366 const getVideoOptions = {
367 videoObject: videoUrl, 367 videoObject: videoUrl,
368 syncParam: { rates: false, shares: false, comments: false, thumbnail: false, refreshVideo: true }, 368 syncParam: { rates: false, shares: false, comments: false, refreshVideo: true },
369 fetchType: 'all' as 'all' 369 fetchType: 'all' as 'all'
370 } 370 }
371 const { video } = await getOrCreateAPVideo(getVideoOptions) 371 const { video } = await getOrCreateAPVideo(getVideoOptions)