mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
修复全部 mv接口分页参数错误的问题#524
This commit is contained in:
parent
d37906ec14
commit
cfa939bb84
@ -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` 失效问题
|
||||
|
||||
|
@ -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
|
||||
};
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "NeteaseCloudMusicApi",
|
||||
"version": "3.18.2",
|
||||
"version": "3.18.3",
|
||||
"description": "网易云音乐 NodeJS 版 API",
|
||||
"scripts": {
|
||||
"start": "node app.js",
|
||||
|
Loading…
x
Reference in New Issue
Block a user