diff options
author | Chocobozzz <me@florianbigard.com> | 2023-03-07 11:59:47 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2023-03-07 11:59:47 +0100 |
commit | 0e3026f3159f2b766a73393219b10cbe49111141 (patch) | |
tree | fd029af03f590dad88800a46b61248185189cf7e /scripts/create-move-video-storage-job.ts | |
parent | 09f3d81e0c8edebbe8f5698811ecfb165f942378 (diff) | |
parent | ef19c8ae4c360b0aa9dafc61fa1523a02bbaa25f (diff) | |
download | PeerTube-0e3026f3159f2b766a73393219b10cbe49111141.tar.gz PeerTube-0e3026f3159f2b766a73393219b10cbe49111141.tar.zst PeerTube-0e3026f3159f2b766a73393219b10cbe49111141.zip |
Merge branch 'release/5.1.0' into develop
Diffstat (limited to 'scripts/create-move-video-storage-job.ts')
-rw-r--r-- | scripts/create-move-video-storage-job.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/create-move-video-storage-job.ts b/scripts/create-move-video-storage-job.ts index 13ba3c0b7..c402115f0 100644 --- a/scripts/create-move-video-storage-job.ts +++ b/scripts/create-move-video-storage-job.ts | |||
@@ -72,6 +72,8 @@ async function run () { | |||
72 | for (const id of ids) { | 72 | for (const id of ids) { |
73 | const videoFull = await VideoModel.loadFull(id) | 73 | const videoFull = await VideoModel.loadFull(id) |
74 | 74 | ||
75 | if (videoFull.isLive) continue | ||
76 | |||
75 | const files = videoFull.VideoFiles || [] | 77 | const files = videoFull.VideoFiles || [] |
76 | const hls = videoFull.getHLSPlaylist() | 78 | const hls = videoFull.getHLSPlaylist() |
77 | 79 | ||