Don't process live when moving to external storage

This commit is contained in:
Chocobozzz 2023-03-07 11:53:06 +01:00
parent f967d8be4d
commit 9c84bf5156
No known key found for this signature in database
GPG key ID: 583A612D890159BE

View file

@ -72,6 +72,8 @@ async function run () {
for (const id of ids) {
const videoFull = await VideoModel.loadFull(id)
if (videoFull.isLive) continue
const files = videoFull.VideoFiles || []
const hls = videoFull.getHLSPlaylist()