mirror of https://github.com/yt-dlp/yt-dlp.git
[ie/pokergo] Make metadata extraction non-fatal (#10319)
Authored by: axpauls
This commit is contained in:
parent
e6a22834df
commit
36e8dd8325
|
@ -5,6 +5,7 @@ from ..utils import (
|
|||
ExtractorError,
|
||||
try_get,
|
||||
)
|
||||
from ..utils.traversal import traverse_obj
|
||||
|
||||
|
||||
class PokerGoBaseIE(InfoExtractor):
|
||||
|
@ -65,7 +66,7 @@ class PokerGoIE(PokerGoBaseIE):
|
|||
'width': image.get('width'),
|
||||
'height': image.get('height'),
|
||||
} for image in data_json.get('images') or [] if image.get('url')]
|
||||
series_json = next(dct for dct in data_json.get('show_tags') or [] if dct.get('video_id') == video_id) or {}
|
||||
series_json = traverse_obj(data_json, ('show_tags', lambda _, v: v['video_id'] == video_id, any)) or {}
|
||||
|
||||
return {
|
||||
'_type': 'url_transparent',
|
||||
|
|
Loading…
Reference in New Issue