Fix video import with URL with small titles
This commit is contained in:
parent
ea853b7282
commit
5d112d0c3b
|
@ -22,9 +22,10 @@ function getYoutubeDLInfo (url: string): Promise<YoutubeDLInfo> {
|
||||||
youtubeDL.getInfo(url, options, (err, info) => {
|
youtubeDL.getInfo(url, options, (err, info) => {
|
||||||
if (err) return rej(err)
|
if (err) return rej(err)
|
||||||
|
|
||||||
const obj = normalizeObject(info)
|
const obj = buildVideoInfo(normalizeObject(info))
|
||||||
|
if (obj.name && obj.name.length < CONSTRAINTS_FIELDS.VIDEOS.NAME.min) obj.name += ' video'
|
||||||
|
|
||||||
return res(buildVideoInfo(obj))
|
return res(obj)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue