diff --git a/CHANGELOG.MD b/CHANGELOG.MD index 086e260251837283b7e7cfa1e25d85439943ac60..e729bc20c866d28df625b9386eb5b376da4c65f1 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 fc439aa8c8bb0d6aae5ea7927910f5dde24ce970..b2d4b0d53b313d815558365fd280ad24b98d08ce 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 852de500ce183b57b857c181b00ee5de61bf254d..188b6249afb11b6115d69cc2115b6072b2b553a4 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",