修复云盘上传无法获取文件的问题

This commit is contained in:
binaryify 2022-02-09 15:03:58 +08:00
parent 8fa03ecd27
commit 4c643c7d36
3 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,7 @@
# 更新日志 # 更新日志
### 4.5.4 | 2022.02.09
- 修复云盘上传无法获取到文件的问题
### 4.5.3 | 2022.02.04 ### 4.5.3 | 2022.02.04
- 增加签到进度接口 [#1462](https://github.com/Binaryify/NeteaseCloudMusicApi/pull/1462) - 增加签到进度接口 [#1462](https://github.com/Binaryify/NeteaseCloudMusicApi/pull/1462)

View File

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

View File

@ -215,6 +215,7 @@ async function consturctServer(moduleDefs) {
{ cookie: req.cookies }, { cookie: req.cookies },
req.query, req.query,
req.body, req.body,
req.files,
) )
try { try {