[qqmusic:toplist] List name and description are optional
This commit is contained in:
parent
168db222c6
commit
9d4f213f90
1 changed files with 3 additions and 2 deletions
|
@ -222,6 +222,7 @@ class QQMusicToplistIE(QQPlaylistBaseIE):
|
|||
) for song in toplist_json['songlist']
|
||||
]
|
||||
|
||||
list_name = toplist_json['topinfo']['ListName']
|
||||
list_description = toplist_json['topinfo']['info']
|
||||
topinfo = toplist_json.get('topinfo', {})
|
||||
list_name = topinfo.get('ListName')
|
||||
list_description = topinfo.get('info')
|
||||
return self.playlist_result(entries, list_id, list_name, list_description)
|
||||
|
|
Loading…
Reference in a new issue