2
0
mirror of https://github.com/ctrlcvs/xiaoyao-cvs-plugin.git synced 2024-12-22 19:10:53 +08:00

修正体力推送问题

This commit is contained in:
Ctrlcvs 2022-11-09 22:14:24 +08:00
parent 4e6a87df16
commit 958c219454
2 changed files with 7 additions and 3 deletions

View File

@ -39,6 +39,10 @@ export async function Note(e, {
if (isV3) {
if(e.msg.replace(/全|全部/g,'多').includes('多')){
let ck=await gsCfg.getBingCkSingle(e.user_id)
if(Object.keys(ck).length==0){
e.reply(`请先【#绑定cookie】`)
return true;
}
let sendMsg=[]
e._reply=e.reply;
e.reply=((msg)=>{
@ -113,8 +117,7 @@ export async function Note(e, {
saveJson();
}
}
await notes.getNote(cookie,uid,res,{render})
return true;
return await notes.getNote(cookie,uid,res,{render})
}
async function getDailyNote(uid, cookie) {

View File

@ -103,7 +103,7 @@ export default class note {
}
async getNote(cookie, uid, res,{render}){
if (!res || res.retcode !== 0) return true
if (!res || res.retcode !== 0) return false
let data = res.data;
//推送任务
@ -294,6 +294,7 @@ export default class note {
render,
scale: 1.2
})
return true;
}
async dateTime_(time) {