This commit is contained in:
smallfawn
2025-02-16 19:12:09 +08:00
parent 9f7cd0e7d5
commit 86c5e030fc
4 changed files with 328 additions and 297 deletions

View File

@@ -9,7 +9,7 @@
*/
const $ = new Env("北京汽车");
const notify = $.isNode() ? require('./sendNotify') : '';
const notify = $.isNode() ? require('../sendNotify') : '';
let ckName = "bjevAuth";
let envSplitor = ["@", "\n"]; //多账号分隔符
let strSplitor = "&"; //多变量分隔符

View File

@@ -280,7 +280,7 @@ async function SendMsg(message) {
if (!message) return;
if (Notify > 0) {
if ($.isNode()) {
var notify = require("./sendNotify");
var notify = require("../sendNotify");
await notify.sendNotify($.name, message)
} else {
$.msg($.name, '', message)