Merge commit '6519b054c6d385386e3c660c044f538aa49aadec'
This commit is contained in:
commit
4ff6bf6c43
|
@ -546,7 +546,9 @@ export default Vue.extend({
|
|||
this.recommendedVideos = result.recommendedVideos
|
||||
this.adaptiveFormats = result.adaptiveFormats.map((format) => {
|
||||
format.bitrate = parseInt(format.bitrate)
|
||||
format.height = parseInt(format.resolution.replace('p', ''))
|
||||
if (typeof format.resolution !== 'undefined') {
|
||||
format.height = parseInt(format.resolution.replace('p', ''))
|
||||
}
|
||||
return format
|
||||
})
|
||||
this.isLive = result.liveNow
|
||||
|
|
Loading…
Reference in New Issue