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

修正绑定sk报错

This commit is contained in:
Ctrlcvs 2022-11-25 09:45:32 +08:00
parent e41c7fbcd9
commit 8a595232e2

View File

@ -759,7 +759,7 @@ export default class user {
// ltoken=res?.data?.ltoken // ltoken=res?.data?.ltoken
// } // }
this.e.cookie = this.e.cookie =
`ltoken=${this.e.sk?.get('ltoken')||ltoken};ltuid=196576671;cookie_token=${data.data.cookie_token}; account_id=196576671;` `ltoken=${this.e.sk?.get('ltoken')||ltoken};ltuid=${this.e.sk?.get('stuid')};cookie_token=${data.data.cookie_token}; account_id=${this.e.sk?.get('stuid')};`
// if(this.e.sk?.get('mid')){ // if(this.e.sk?.get('mid')){
// this.e.cookie = // this.e.cookie =
// `ltoken_v2=${this.e.sk?.get('ltoken')||ltoken};cookie_token_v2=${data.data.cookie_token}; account_mid_v2=${this.e.sk.get('mid')};ltmid_v2=${this.e.sk.get('mid')}` // `ltoken_v2=${this.e.sk?.get('ltoken')||ltoken};cookie_token_v2=${data.data.cookie_token}; account_mid_v2=${this.e.sk.get('mid')};ltmid_v2=${this.e.sk.get('mid')}`
@ -768,6 +768,9 @@ export default class user {
this.e.cookie = this.e.original_msg this.e.cookie = this.e.original_msg
} }
res = await this.getData("userGameInfo", this.ForumData[1], false) res = await this.getData("userGameInfo", this.ForumData[1], false)
if(res?.retcode!=0){
return false;
}
let uids = [] let uids = []
for (let s of res.data.list) { for (let s of res.data.list) {
let datalist = {} let datalist = {}