|
|
@@ -217,13 +217,15 @@ async function doLotteryTracking() {
|
|
|
setTrackingChangeCount(ranking, curTrackingCount + 1);
|
|
|
}
|
|
|
}
|
|
|
- tipsMsg = `期号:${drawIssue} 追号如下:\n${tipsMsg}\n`;
|
|
|
- magicJS.notification.appendNotifyInfo(tipsMsg);
|
|
|
+ if (tipsMsg.length > 0) {
|
|
|
+ tipsMsg = `期号:${drawIssue} 追号如下:\n${tipsMsg}\n`;
|
|
|
+ magicJS.notification.appendNotifyInfo(tipsMsg);
|
|
|
+ magicJS.data.write('168_PksTrackingDrawIssue', strDrawIssue);
|
|
|
+ }
|
|
|
if (prizeTips.length > 0) {
|
|
|
prizeTips = `期号:${preDrawIssue} 中奖如下:\n${prizeTips}\n`;
|
|
|
magicJS.notification.post(magicJS.scriptName, `🎉${prizeTips}`);
|
|
|
}
|
|
|
- magicJS.data.write('168_PksTrackingDrawIssue', strDrawIssue);
|
|
|
}
|
|
|
|
|
|
|