diff options
-rw-r--r-- | server/lib/job-queue/handlers/video-live-ending.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/lib/job-queue/handlers/video-live-ending.ts b/server/lib/job-queue/handlers/video-live-ending.ts index abfaf1cd7..7dbffc955 100644 --- a/server/lib/job-queue/handlers/video-live-ending.ts +++ b/server/lib/job-queue/handlers/video-live-ending.ts | |||
@@ -34,13 +34,13 @@ async function processVideoLiveEnding (job: Job) { | |||
34 | const live = await VideoLiveModel.loadByVideoId(payload.videoId) | 34 | const live = await VideoLiveModel.loadByVideoId(payload.videoId) |
35 | const liveSession = await VideoLiveSessionModel.load(payload.liveSessionId) | 35 | const liveSession = await VideoLiveSessionModel.load(payload.liveSessionId) |
36 | 36 | ||
37 | const permanentLive = live.permanentLive | ||
38 | |||
39 | if (!video || !live || !liveSession) { | 37 | if (!video || !live || !liveSession) { |
40 | logError() | 38 | logError() |
41 | return | 39 | return |
42 | } | 40 | } |
43 | 41 | ||
42 | const permanentLive = live.permanentLive | ||
43 | |||
44 | liveSession.endingProcessed = true | 44 | liveSession.endingProcessed = true |
45 | await liveSession.save() | 45 | await liveSession.save() |
46 | 46 | ||