Add check for format.resolution in Invidious adaptive formats
This commit is contained in:
parent
fde06914b5
commit
6519b054c6
|
@ -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