From b39b8635339d8c13b95efb95e7873777e108a4e6 Mon Sep 17 00:00:00 2001 From: lxk0301 <778732665@qq.com> Date: Wed, 10 Feb 2021 22:52:46 +0800 Subject: [PATCH] sendNotify.js MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 去掉QQ酷推 --- sendNotify.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sendNotify.js b/sendNotify.js index 4a113000..a717e4b9 100644 --- a/sendNotify.js +++ b/sendNotify.js @@ -134,7 +134,7 @@ if (process.env.PUSH_PLUS_USER) { async function sendNotify(text, desp, params = {}) { - //提供7种通知 + //提供6种通知 desp += `\n本脚本开源免费使用 By:https://github.com/LXK9301/jd_scripts`; await Promise.all([ serverNotify(text, desp),//微信server酱 @@ -149,7 +149,7 @@ async function sendNotify(text, desp, params = {}) { qywxBotNotify(text, desp), //企业微信机器人 qywxamNotify(text, desp), //企业微信应用消息推送 iGotNotify(text, desp, params),//iGot - CoolPush(text, desp)//QQ酷推 + //CoolPush(text, desp)//QQ酷推 ]) }