Skip to content

Commit

Permalink
expired
Browse files Browse the repository at this point in the history
  • Loading branch information
Faker authored and Faker committed Apr 14, 2022
1 parent 66a2a84 commit 1a0cc92
Show file tree
Hide file tree
Showing 10 changed files with 39 additions and 4,591 deletions.
Binary file modified .DS_Store
Binary file not shown.
941 changes: 0 additions & 941 deletions gua_opencard115.js

This file was deleted.

786 changes: 0 additions & 786 deletions gua_opencard117.js

This file was deleted.

665 changes: 0 additions & 665 deletions gua_opencard118.js

This file was deleted.

16 changes: 8 additions & 8 deletions jd_CkSeq.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,11 @@ if (UidFileexists) {
cookie = cookiesArr[i];
var tempptpin = decodeURIComponent(cookie.match(/pt_pin=([^; ]+)(?=;?)/) && cookie.match(/pt_pin=([^; ]+)(?=;?)/)[1]);
var intSeq = inArray(tempptpin, arrEnvPtPin);
if (intSeq != -1) {
intSeq += 1;
if (intSeq != -1) {
arrCkPtPin.push(tempptpin);
strCk += "【"+intSeq + "】" + tempptpin ;
if (arrEnvOnebyOne[i]) {
strCk += "(账号已启用一对一推送)"
strCk += "【"+(intSeq+1) + "】" + tempptpin ;
if (arrEnvOnebyOne[intSeq]) {
strCk += "(已启用一对一推送)"
}
strCk +="\n";
}
Expand All @@ -86,14 +85,14 @@ if (UidFileexists) {
if (intSeq == -1) {
strNoFoundCk += "【" + (i + 1) + "】" + tempptpin;
if (arrEnvStatus[i] == 1) {
strNoFoundCk += "(状态已禁用)"
strNoFoundCk += "(已禁用)"
if ($.isNode() && WP_APP_TOKEN_ONE) {
await notify.sendNotifybyWxPucher("账号下线通知", strNotify, tempptpin);
await $.wait(1000);
}
}
if (arrEnvOnebyOne[i]) {
strNoFoundCk += "(账号已启用一对一推送)"
strNoFoundCk += "(已启用一对一推送)"
}
strNoFoundCk += "\n";

Expand All @@ -118,14 +117,15 @@ if (UidFileexists) {

function inArray(search, array) {
var lnSeq = -1;
for (var i in array) {
for (let i = 0; i < array.length; i++) {
if (array[i] == search) {
lnSeq = i;
}
}
return parseInt(lnSeq);
}


function getuuid(strRemark, PtPin) {
var strTempuuid = "";
if (strRemark) {
Expand Down
Loading

0 comments on commit 1a0cc92

Please sign in to comment.