mirror of
https://github.com/ikechan8370/chatgpt-plugin.git
synced 2025-12-16 21:37:11 +00:00
fix: 清空队列正则不正确
This commit is contained in:
parent
7133ce29fc
commit
6c35ee851e
1 changed files with 4 additions and 4 deletions
|
|
@ -84,11 +84,11 @@ export class chatgpt extends plugin {
|
|||
permission: 'master'
|
||||
},
|
||||
{
|
||||
reg: '^#结束对话([sS]*)',
|
||||
reg: '^#(chatgpt)?结束对话([sS]*)',
|
||||
fnc: 'destroyConversations'
|
||||
},
|
||||
{
|
||||
reg: '^#结束全部对话$',
|
||||
reg: '^#(chatgpt)?结束全部对话$',
|
||||
fnc: 'endAllConversations',
|
||||
permission: 'master'
|
||||
},
|
||||
|
|
@ -113,12 +113,12 @@ export class chatgpt extends plugin {
|
|||
fnc: 'setDefaultRole'
|
||||
},
|
||||
{
|
||||
reg: '^#(chatgpt)清空(chat)?队列$',
|
||||
reg: '^#(chatgpt)?清空(chat)?队列$',
|
||||
fnc: 'emptyQueue',
|
||||
permission: 'master'
|
||||
},
|
||||
{
|
||||
reg: '^#(chatgpt)移出(chat)?队列首位$',
|
||||
reg: '^#(chatgpt)?移出(chat)?队列首位$',
|
||||
fnc: 'removeQueueFirst',
|
||||
permission: 'master'
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue