fix(tiktok): update title getter

Signed-off-by: Aakash Gajjar <skyqutip@gmail.com>
pull/8/head
Aakash Gajjar 2020-08-11 12:02:23 +05:30
rodzic b19eec0d33
commit 89cee32ce9
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 84012841A6961837
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -50,7 +50,7 @@ class TikTokBaseIE(InfoExtractor):
'thumbnail': try_get(video_info, lambda x: x['covers'][0]),
'timestamp': timestamp,
'width': width,
'title': self._og_search_title(webpage),
'title': str_or_none(share_info.get('title')) or self._og_search_title(webpage),
'creator': str_or_none(author_info.get('nickName')),
'uploader': unique_id,
'uploader_id': str_or_none(author_info.get('userId')),