aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/lib/job-queue
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/job-queue
parentf42dd5524b47e89d9b4491f784f05a99303cc934 (diff)
downloadPeerTube-3b46eec8aeb95eb0dce763e3569c0509b1da7607.tar.gz
PeerTube-3b46eec8aeb95eb0dce763e3569c0509b1da7607.tar.zst
PeerTube-3b46eec8aeb95eb0dce763e3569c0509b1da7607.zip
Remove unused param
Diffstat (limited to 'server/lib/job-queue')
-rw-r--r--server/lib/job-queue/handlers/activitypub-refresher.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/lib/job-queue/handlers/activitypub-refresher.ts b/server/lib/job-queue/handlers/activitypub-refresher.ts
index 307e771ff..706bf17fa 100644
--- a/server/lib/job-queue/handlers/activitypub-refresher.ts
+++ b/server/lib/job-queue/handlers/activitypub-refresher.ts
@@ -28,7 +28,7 @@ export {
28 28
29async function refreshVideo (videoUrl: string) { 29async function refreshVideo (videoUrl: string) {
30 const fetchType = 'all' as 'all' 30 const fetchType = 'all' as 'all'
31 const syncParam = { rates: true, shares: true, comments: true, thumbnail: true } 31 const syncParam = { rates: true, shares: true, comments: true }
32 32
33 const videoFromDatabase = await loadVideoByUrl(videoUrl, fetchType) 33 const videoFromDatabase = await loadVideoByUrl(videoUrl, fetchType)
34 if (videoFromDatabase) { 34 if (videoFromDatabase) {