[fix] CPBL賽事判斷錯誤

This commit is contained in:
建喵 2021-04-27 08:42:22 +08:00
parent a9ff89d8b8
commit 74b941a94e
5 changed files with 774 additions and 762 deletions

View File

@ -157,11 +157,22 @@ class MessageClass {
case "今日賽事": case "今日賽事":
case "我愛建喵今日賽事": { case "我愛建喵今日賽事": {
let columns = await this.app.CPBL.GetCPBLList(Msg[1] ? Msg[1] : dateFormat(new Date(), "yyyymmdd")); let columns = await this.app.CPBL.GetCPBLList(Msg[1] ? Msg[1] : dateFormat(new Date(), "yyyymmdd"));
if (columns.length > 0) {
let res_reply = event.replyimagemap("建喵也愛你", columns).then(function (data) { let res_reply = event.replyimagemap("建喵也愛你", columns).then(function (data) {
// 當訊息成功回傳後的處理 // 當訊息成功回傳後的處理
}).catch(function (error) { }).catch(function (error) {
// 當訊息回傳失敗後的處理 // 當訊息回傳失敗後的處理
}); });
} else {
replyMsg = "今天沒有比賽";
event.reply(replyMsg)
.then(function (data) {
// 當訊息成功回傳後的處理
})
.catch(function (error) {
// 當訊息回傳失敗後的處理
});
}
return; return;
} }

1
app.js
View File

@ -1,4 +1,5 @@
// 背景執行 forever start -a -l line-cost-js.log app.js // 背景執行 forever start -a -l line-cost-js.log app.js
// 重新背景執行 forever restart -a -l line-cost-js.log app.js
// npm start // npm start
// npm run dev // npm run dev
// Debug nodemon --inspect=192.168.168.15:9229 app.js // Debug nodemon --inspect=192.168.168.15:9229 app.js