|
|
@@ -188,8 +188,15 @@ async function doLotteryTracking() {
|
|
|
if (!planStr || planStr.length == 0) {
|
|
|
continue;
|
|
|
}
|
|
|
- let trackingTotalCount = getTrackingCount(ranking);
|
|
|
let curTrackingCount = getTrackingChangeCount(ranking);
|
|
|
+ if (typeof (curTrackingCount) != 'number' || curTrackingCount < 1) {
|
|
|
+ setTrackingChangeCount(ranking, 1);
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+ let trackingTotalCount = getTrackingCount(ranking);
|
|
|
+ if (typeof (trackingTotalCount) != 'number' || trackingTotalCount < 1) {
|
|
|
+ continue;
|
|
|
+ }
|
|
|
let posIndex = ranking - 1;
|
|
|
if (checkHitPrize2(preDrawCodeArr, planStr, posIndex)) {
|
|
|
// 追号中
|