diff options
author | Chocobozzz <me@florianbigard.com> | 2022-09-16 09:37:07 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-09-16 09:37:07 +0200 |
commit | 3204f4d17dec79413a94eae8a71b72e0c7ec7ba5 (patch) | |
tree | b6f5a2c3d6e55676972e671fb0ef429a7bdd975b /server/lib/job-queue/handlers | |
parent | c95fbe65530191d7be22341815ecb743c139396f (diff) | |
download | PeerTube-3204f4d17dec79413a94eae8a71b72e0c7ec7ba5.tar.gz PeerTube-3204f4d17dec79413a94eae8a71b72e0c7ec7ba5.tar.zst PeerTube-3204f4d17dec79413a94eae8a71b72e0c7ec7ba5.zip |
Fix sync import of latest videos
Diffstat (limited to 'server/lib/job-queue/handlers')
-rw-r--r-- | server/lib/job-queue/handlers/video-channel-import.ts | 4 |
1 files changed, 3 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 9aaad659e..600292844 100644 --- a/server/lib/job-queue/handlers/video-channel-import.ts +++ b/server/lib/job-queue/handlers/video-channel-import.ts | |||
@@ -5,7 +5,7 @@ import { synchronizeChannel } from '@server/lib/sync-channel' | |||
5 | import { VideoChannelModel } from '@server/models/video/video-channel' | 5 | import { VideoChannelModel } from '@server/models/video/video-channel' |
6 | import { VideoChannelSyncModel } from '@server/models/video/video-channel-sync' | 6 | import { VideoChannelSyncModel } from '@server/models/video/video-channel-sync' |
7 | import { MChannelSync } from '@server/types/models' | 7 | import { MChannelSync } from '@server/types/models' |
8 | import { VideoChannelImportPayload } from '@shared/models' | 8 | import { VideoChannelImportPayload, VideoChannelSyncState } from '@shared/models' |
9 | 9 | ||
10 | export async function processVideoChannelImport (job: Job) { | 10 | export async function processVideoChannelImport (job: Job) { |
11 | const payload = job.data as VideoChannelImportPayload | 11 | const payload = job.data as VideoChannelImportPayload |
@@ -42,5 +42,7 @@ export async function processVideoChannelImport (job: Job) { | |||
42 | }) | 42 | }) |
43 | } catch (err) { | 43 | } catch (err) { |
44 | logger.error(`Failed to import channel ${videoChannel.name}`, { err }) | 44 | logger.error(`Failed to import channel ${videoChannel.name}`, { err }) |
45 | channelSync.state = VideoChannelSyncState.FAILED | ||
46 | await channelSync.save() | ||
45 | } | 47 | } |
46 | } | 48 | } |