1
1
mirror of https://github.com/ytdl-org/youtube-dl synced 2024-07-22 10:50:59 +02:00

[zingmp3:album] Skip broken items

This commit is contained in:
Sergey M․ 2015-10-10 22:09:21 +06:00
parent 8119597d6f
commit f790c43f6e

View File

@ -45,7 +45,9 @@ class ZingMp3BaseInfoExtractor(InfoExtractor):
entries = []
for i, item in enumerate(items, 1):
entry = self._extract_item(item)
entry = self._extract_item(item, fatal=False)
if not entry:
continue
entry['id'] = '%s-%d' % (id, i)
entries.append(entry)