修复全部 mv接口分页参数错误的问题#524

This commit is contained in:
binaryify 2019-07-04 15:58:45 +08:00
parent d37906ec14
commit cfa939bb84
3 changed files with 5 additions and 2 deletions

View File

@ -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 ### 3.18.2 | 2019.07.03
- 修复听歌打卡接口 `/scrobble` 失效问题 - 修复听歌打卡接口 `/scrobble` 失效问题

View File

@ -7,7 +7,7 @@ module.exports = (query, request) => {
类型: query.type || "全部", 类型: query.type || "全部",
排序: query.order || "上升最快" 排序: query.order || "上升最快"
}), }),
offset: query.limit || 0, offset: query.offset || 0,
total: "true", total: "true",
limit: query.limit || 30 limit: query.limit || 30
}; };

View File

@ -1,6 +1,6 @@
{ {
"name": "NeteaseCloudMusicApi", "name": "NeteaseCloudMusicApi",
"version": "3.18.2", "version": "3.18.3",
"description": "网易云音乐 NodeJS 版 API", "description": "网易云音乐 NodeJS 版 API",
"scripts": { "scripts": {
"start": "node app.js", "start": "node app.js",