mirror of https://github.com/yt-dlp/yt-dlp.git
[tiktok] Fix 53dad39e30
This commit is contained in:
parent
39ca3b5c7f
commit
a8549f19e7
|
@ -3,7 +3,6 @@ from __future__ import unicode_literals
|
|||
|
||||
import base64
|
||||
import collections
|
||||
import datetime
|
||||
import hashlib
|
||||
import itertools
|
||||
import json
|
||||
|
|
|
@ -180,7 +180,7 @@ class TikTokBaseIE(InfoExtractor):
|
|||
user_url = self._UPLOADER_URL_FORMAT % (traverse_obj(author_info,
|
||||
'sec_uid', 'id', 'uid', 'unique_id',
|
||||
expected_type=str_or_none, get_all=False))
|
||||
labels = traverse_obj(aweme_detail, ('hybrid_label', ..., 'text'), expected_type=str)
|
||||
labels = traverse_obj(aweme_detail, ('hybrid_label', ..., 'text'), expected_type=str, default=[])
|
||||
|
||||
contained_music_track = traverse_obj(
|
||||
music_info, ('matched_song', 'title'), ('matched_pgc_sound', 'title'), expected_type=str)
|
||||
|
|
Loading…
Reference in New Issue