Browse Source

[foxgay] Ensure height is int

master-ytdl-org
Sergey M․ 7 years ago
parent
commit
cc69a3de1b
No known key found for this signature in database GPG Key ID: 2C393E0F18A9236D
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      youtube_dl/extractor/foxgay.py

+ 2
- 1
youtube_dl/extractor/foxgay.py View File

@ -5,6 +5,7 @@ import itertools
from .common import InfoExtractor
from ..utils import (
get_element_by_id,
int_or_none,
remove_end,
)
@ -46,7 +47,7 @@ class FoxgayIE(InfoExtractor):
formats = [{
'url': source,
'height': resolution,
'height': int_or_none(resolution),
} for source, resolution in zip(
video_data['sources'], video_data.get('resolutions', itertools.repeat(None)))]


Loading…
Cancel
Save