From 65358e981ace0c255ec8ba5ef7fbe788cb05495e Mon Sep 17 00:00:00 2001 From: binaryify Date: Thu, 4 Jul 2019 15:58:45 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=85=A8=E9=83=A8=20mv?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E5=88=86=E9=A1=B5=E5=8F=82=E6=95=B0=E9=94=99?= =?UTF-8?q?=E8=AF=AF=E7=9A=84=E9=97=AE=E9=A2=98#524?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.MD | 3 +++ module/mv_all.js | 2 +- package.json | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.MD b/CHANGELOG.MD index a02eabd0575..eaf8a1d969d 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -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` 失效问题 diff --git a/module/mv_all.js b/module/mv_all.js index 4a955c97aa4..4beac715382 100644 --- a/module/mv_all.js +++ b/module/mv_all.js @@ -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 }; diff --git a/package.json b/package.json index f39158add2f..94100a3d710 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "NeteaseCloudMusicApi", - "version": "3.18.2", + "version": "3.18.3", "description": "网易云音乐 NodeJS 版 API", "scripts": { "start": "node app.js",