diff --git a/publish/changeLog.md b/publish/changeLog.md index e69de29b..7c47c352 100644 --- a/publish/changeLog.md +++ b/publish/changeLog.md @@ -0,0 +1,3 @@ +#### 修复 + +- 修复QQ源歌单无法翻页Bug diff --git a/src/renderer/utils/music/tx/songList.js b/src/renderer/utils/music/tx/songList.js index 3d3d74cd..5ccceda0 100644 --- a/src/renderer/utils/music/tx/songList.js +++ b/src/renderer/utils/music/tx/songList.js @@ -36,7 +36,7 @@ export default { category_id: id, size: this.limit_list, page: page - 1, - use_page: page - 1, + use_page: 1, }, module: 'playlist.PlayListCategoryServer', }, @@ -44,7 +44,7 @@ export default { comm: { cv: 1602, ct: 20 }, playlist: { method: 'get_playlist_by_tag', - param: { id: 10000000, sin: 0, size: this.limit_list, order: sortId, cur_page: page }, + param: { id: 10000000, sin: this.limit_list * (page - 1), size: this.limit_list, order: sortId, cur_page: page }, module: 'playlist.PlayListPlazaServer', }, }))}`