mirror of
https://github.com/ikechan8370/chatgpt-plugin.git
synced 2025-12-17 13:57:10 +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 () {
|
async saveBingToken () {
|
||||||
if (!this.e.msg) return
|
if (!this.e.msg) return
|
||||||
let token = this.e.msg
|
let token = this.e.msg
|
||||||
if (token.length < 215) {
|
if (token.length < 100) {
|
||||||
await this.reply('Bing Token格式错误,请确定获取了有效的_U Cookie或完整的Cookie', true)
|
await this.reply('Bing Token格式错误,请确定获取了有效的_U Cookie或完整的Cookie', true)
|
||||||
this.finish('saveBingToken')
|
this.finish('saveBingToken')
|
||||||
return
|
return
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue