mirror of
https://github.com/ikechan8370/chatgpt-plugin.git
synced 2025-12-16 13:27:08 +00:00
fix: 减少必应token长度限制
This commit is contained in:
parent
4c0a1852f6
commit
6b2cd446f9
1 changed files with 1 additions and 1 deletions
|
|
@ -205,7 +205,7 @@ export class ChatgptManagement extends plugin {
|
|||
async saveBingToken () {
|
||||
if (!this.e.msg) return
|
||||
let token = this.e.msg
|
||||
if (token.length < 215) {
|
||||
if (token.length < 100) {
|
||||
await this.reply('Bing Token格式错误,请确定获取了有效的_U Cookie或完整的Cookie', true)
|
||||
this.finish('saveBingToken')
|
||||
return
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue