diff --git a/CHANGELOG.MD b/CHANGELOG.MD index 086e260..e729bc2 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -1,4 +1,7 @@ # 更新日志 +### 3.46.1 | 2020.11.7 +- 修复私信音乐接口出现风险提示的问题 + ### 3.46.0 | 2020.11.7 - 添加私信音乐接口 [#1016](https://github.com/Binaryify/NeteaseCloudMusicApi/issues/1016) diff --git a/module/send_song.js b/module/send_song.js index fc439aa..b2d4b0d 100644 --- a/module/send_song.js +++ b/module/send_song.js @@ -1,7 +1,8 @@ // 私信歌曲 module.exports = (query, request) => { - // query.cookie.os = 'pc' + query.cookie.os = 'ios' + query.cookie.appver = '7.3.27' const data = { id: query.id, msg: query.msg || '', diff --git a/package.json b/package.json index 852de50..188b624 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "NeteaseCloudMusicApi", - "version": "3.46.0", + "version": "3.46.1", "description": "网易云音乐 NodeJS 版 API", "scripts": { "start": "node app.js",