Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Commit

Permalink
修复全部 mv接口分页参数错误的问题#524
Browse files Browse the repository at this point in the history
  • Loading branch information
binaryify committed Jul 4, 2019
1 parent ae6b297 commit f657a05
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# 更新日志
### 3.18.3 | 2019.07.04
- 修复全部 mv`/mv/all` 接口分页参数错误的问题 [#524](https://github.com/Binaryify/NeteaseCloudMusicApi/issues/524)

### 3.18.2 | 2019.07.03
- 修复听歌打卡接口 `/scrobble` 失效问题

Expand Down
2 changes: 1 addition & 1 deletion module/mv_all.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module.exports = (query, request) => {
类型: query.type || "全部",
排序: query.order || "上升最快"
}),
offset: query.limit || 0,
offset: query.offset || 0,
total: "true",
limit: query.limit || 30
};
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "NeteaseCloudMusicApi",
"version": "3.18.2",
"version": "3.18.3",
"description": "网易云音乐 NodeJS 版 API",
"scripts": {
"start": "node app.js",
Expand Down

0 comments on commit f657a05

Please sign in to comment.