Skip to content

Commit

Permalink
Revert "fix: 修复酷我音乐匹配的音频为版权音频 (UnblockNeteaseMusic#1435)"
Browse files Browse the repository at this point in the history
This reverts commit 8073825.
  • Loading branch information
luoxingran committed Aug 19, 2024
1 parent a4b16d4 commit bb1921e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/provider/kuwo.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,7 @@ const search = (info) => {
jsonBody.content[1].musicpage.abslist.length < 1
)
return Promise.reject();
const list = jsonBody.content[1].musicpage.abslist
.filter((v) => v.tpay /* vip ? */ === '0')
.map(format);
const list = jsonBody.content[1].musicpage.abslist.map(format);
const matched = select(list, info);
return matched ? matched.id : Promise.reject();
});
Expand Down

0 comments on commit bb1921e

Please sign in to comment.