[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:
Aakash Gajjar 2020-08-01 11:57:52 +05:30
parent 6255e567d9
commit b19eec0d33
No known key found for this signature in database
GPG Key ID: 84012841A6961837
1 changed files with 2 additions and 2 deletions

View File

@ -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),