修改 cqhttp 的发送的数据类型为 JSON ,避免使用表单可能出现的转码问题

This commit is contained in:
shaochuan.wu 2021-08-07 12:22:21 +08:00
parent 1fac0b869c
commit 33c3b36b1c

View File

@ -208,9 +208,9 @@ function gobotNotify(text, desp, time = 2100) {
if (GOBOT_URL) {
const options = {
url: `${GOBOT_URL}?access_token=${GOBOT_TOKEN}&${GOBOT_QQ}`,
body: `message=${text}\n${desp}`,
json: {message:`${text}\n${desp}`},
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
'Content-Type': 'application/json',
},
timeout,
};