mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-27 10:54:34 +01:00
[fix] python 2 "url" field is missing or empty
`try_get` fails for `expected_type=str`, because in python 2 string has `unicode` type. This commit removes the `expected_type` to disable the comparison.
This commit is contained in:
parent
6255e567d9
commit
b19eec0d33
@ -34,7 +34,7 @@ class TikTokBaseIE(InfoExtractor):
|
||||
|
||||
formats = []
|
||||
formats.append({
|
||||
'url': try_get(video_info, lambda x: x['video']['urls'][0], str),
|
||||
'url': try_get(video_info, lambda x: x['video']['urls'][0]),
|
||||
'ext': 'mp4',
|
||||
'height': height,
|
||||
'width': width
|
||||
@ -47,7 +47,7 @@ class TikTokBaseIE(InfoExtractor):
|
||||
'id': str_or_none(video_info.get('id')),
|
||||
'like_count': int_or_none(video_info.get('diggCount')),
|
||||
'repost_count': int_or_none(video_info.get('shareCount')),
|
||||
'thumbnail': try_get(video_info, lambda x: x['covers'][0], str),
|
||||
'thumbnail': try_get(video_info, lambda x: x['covers'][0]),
|
||||
'timestamp': timestamp,
|
||||
'width': width,
|
||||
'title': self._og_search_title(webpage),
|
||||
|
Loading…
Reference in New Issue
Block a user