提交 5f61cdfe 编写于 作者: B binaryify

修复新评论接口分页参数问题 #962

上级 ac6bf92b
# 更新日志
### 3.42.4 | 2020.10.07
- 修复新评论接口分页参数问题
### 3.42.3 | 2020.10.05
- 修复新评论接口分页参数问题
......
......@@ -19,7 +19,8 @@ module.exports = (query, request) => {
pageNo,
showInner: query.showInner || true,
pageSize,
cursor: (pageNo - 1) * pageSize,
cursor:
+query.sortType === 3 ? query.cursor || '0' : (pageNo - 1) * pageSize,
sortType: query.sortType || 1, //1:按推荐排序,2:按热度排序,3:按时间排序
}
return request(
......
{
"name": "NeteaseCloudMusicApi",
"version": "3.42.3",
"version": "3.42.4",
"description": "网易云音乐 NodeJS 版 API",
"scripts": {
"start": "node app.js",
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册