diff options
author | Chocobozzz <me@florianbigard.com> | 2023-07-25 14:26:12 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2023-07-25 14:26:12 +0200 |
commit | 3b46eec8aeb95eb0dce763e3569c0509b1da7607 (patch) | |
tree | c5b638072fb903d9a7690e9174a6c2fb6f9b968f /server/lib/job-queue | |
parent | f42dd5524b47e89d9b4491f784f05a99303cc934 (diff) | |
download | PeerTube-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.ts | 2 |
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 | ||
29 | async function refreshVideo (videoUrl: string) { | 29 | async 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) { |