fix: dict should not be a key.

This commit is contained in:
7a1dd609-d238-4580-9d5f-ee8412b0f5bc
2025-01-11 10:21:06 +08:00
parent 4f9c415da0
commit f015ff7cc9
3 changed files with 12 additions and 12 deletions

View File

@ -638,11 +638,11 @@ def music(userId, music_data):
userall_result = json.loads(sdgb_api(data, "UpsertUserAllApi", userId))
data = json.dumps(
login_result,
userlog_result
userall_result
)
data = json.dumps({
"UserLogin": login_result,
"UserPlaylog": userlog_result,
"UpsertUserall": userall_result
})
return data