mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 02:09:37 +02:00
Merge branch 'release/4.1.0' into develop
This commit is contained in:
commit
7b51ede977
15 changed files with 132 additions and 44 deletions
|
@ -37,7 +37,7 @@ const createTranscodingValidator = [
|
|||
|
||||
// Prefer using job info table instead of video state because before 4.0 failed transcoded video were stuck in "TO_TRANSCODE" state
|
||||
const info = await VideoJobInfoModel.load(video.id)
|
||||
if (info && info.pendingTranscode !== 0) {
|
||||
if (info && info.pendingTranscode > 0) {
|
||||
return res.fail({
|
||||
status: HttpStatusCode.CONFLICT_409,
|
||||
message: 'This video is already being transcoded'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue