1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-22 19:59:35 +00:00

[beeg] Skip empty URLs (Closes #7392)

This commit is contained in:
Sergey M․ 2015-11-07 06:23:00 +06:00
parent ee223abb88
commit 5d0f84d32c

View file

@ -33,6 +33,8 @@ class BeegIE(InfoExtractor):
formats = []
for format_id, video_url in video.items():
if not video_url:
continue
height = self._search_regex(
r'^(\d+)[pP]$', format_id, 'height', default=None)
if not height: