Skip to content

Commit

Permalink
1.9.13 - Fix -- 修复黑名单功能/配置工具数组越界/黑名单列表排序/includes/解锁模块缺失阻塞方法 优化解锁模块唤醒
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperMonster003 committed Jan 28, 2020
1 parent e267366 commit a34cc94
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions Modules/MODULE_UNLOCK.js
Original file line number Diff line number Diff line change
Expand Up @@ -1893,6 +1893,7 @@ function _exports() {
}

exit();
sleep(3600);
}

function _isScrOn() {
Expand Down Expand Up @@ -2822,7 +2823,7 @@ function _exports() {
}
sleep(240);
}
return _err("无可用的PIN解锁参考控件");
return _err("预置的PIN解锁方案全部无效");

// tool function(s) //

Expand All @@ -2837,16 +2838,14 @@ function _exports() {
// given in getNumsBySingleDesc()
let _nums = "123456789".split("");
let _len = _nums.length;
let _ctr = 9;
for (let i = 0; i < _len; i += 1) {
let _kw = f(_nums[i]);
if (!_kw.exists()) {
_err([
"PIN解锁方案失败",
"未能通过全部控件检测"
]);
_ctr -= 1;
}
}
return true;
return _ctr > 6;
}
}
}
Expand Down

0 comments on commit a34cc94

Please sign in to comment.