mirror of https://github.com/Chocobozzz/PeerTube
Ensure we don't move live to object storage
parent
9d9a37330c
commit
709565486f
|
@ -57,6 +57,11 @@ async function run () {
|
|||
process.exit(-1)
|
||||
}
|
||||
|
||||
if (video.isLive) {
|
||||
console.error('Cannot process live video')
|
||||
process.exit(-1)
|
||||
}
|
||||
|
||||
ids.push(video.id)
|
||||
} else {
|
||||
ids = await VideoModel.listLocalIds()
|
||||
|
|
Loading…
Reference in New Issue