[fix] CPBL賽事判斷錯誤
This commit is contained in:
parent
a9ff89d8b8
commit
74b941a94e
@ -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"));
|
||||||
let res_reply = event.replyimagemap("建喵也愛你", columns).then(function (data) {
|
if (columns.length > 0) {
|
||||||
// 當訊息成功回傳後的處理
|
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
1
app.js
@ -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
|
||||||
|
Reference in New Issue
Block a user