From fe2539adff6fe2754830f80f94de64692afed3ff Mon Sep 17 00:00:00 2001 From: smallfawn <101914820+smallfawn@users.noreply.github.com> Date: Wed, 12 Apr 2023 18:55:02 +0800 Subject: [PATCH] Update mxbc.js --- mxbc.js | 29 ++++++++++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) diff --git a/mxbc.js b/mxbc.js index bd6b5ef..4a950be 100644 --- a/mxbc.js +++ b/mxbc.js @@ -31,7 +31,7 @@ let userCount = 0; async function start() { - + await notice() console.log('\n================== 用户CK ==================\n'); taskall = []; for (let user of userList) { @@ -207,6 +207,33 @@ function getSHA256withRSA(content) { return sign64u; } +async function notice() { + try { + let options = { + url: `https://ghproxy.com/https://raw.githubusercontent.com/smallfawn/api/main/notice.json`, + headers: { + 'User-Agent': '' + }, + } + //console.log(options); + let result = await httpRequest(options); + //console.log(result); + if (result) { + if ('notice' in result) { + DoubleLog(`${result.notice}`); + } else { + options.url = `https://gitee.com/smallfawn/api/raw/master/notice.json` + result = await httpRequest(options); + if ('notice' in result) { + DoubleLog(`${result.notice}`); + } + } + } else { + } + } catch (e) { + console.log(e); + } +} function ts13() { return Math.round(new Date().getTime()).toString(); }