Skip to content

Commit

Permalink
chore: (syntax) 支持旧版
Browse files Browse the repository at this point in the history
  • Loading branch information
helloplhm-qwq authored Jan 4, 2024
1 parent 06b6fd3 commit 4d79985
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/tx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
async def info(songid):
req = await _getInfo(songid)
singerList = []
forin req['track_info']['singer']:
for s in req['track_info']['singer']:
s.pop('uin')
s.pop('title')
singerList.append()
singerList.append(s)
file_info = {}
if (req['track_info']['file']['size_128mp3'] != 0):
file_info['128k'] = {
Expand Down

0 comments on commit 4d79985

Please sign in to comment.