diff --git a/apps/management.js b/apps/management.js index 6c0bcd3..3bfd2fb 100644 --- a/apps/management.js +++ b/apps/management.js @@ -936,7 +936,7 @@ export class ChatgptManagement extends plugin { async setAdminPassword (e) { if (e.isGroup || !e.isPrivate) { - await this.reply('请私聊发生命令', true) + await this.reply('请私聊发送命令', true) return true } this.setContext('saveAdminPassword') @@ -946,7 +946,7 @@ export class ChatgptManagement extends plugin { async setUserPassword (e) { if (e.isGroup || !e.isPrivate) { - await this.reply('请私聊发生命令', true) + await this.reply('请私聊发送命令', true) return true } this.setContext('saveUserPassword') @@ -1000,7 +1000,7 @@ export class ChatgptManagement extends plugin { async adminPage (e) { if (!Config.groupAdminPage && (e.isGroup || e.isPrivate)) { - await this.reply('请私聊发生命令', true) + await this.reply('请私聊发送命令', true) return true } const viewHost = Config.serverHost ? `http://${Config.serverHost}/` : `http://${await getPublicIP()}:${Config.serverPort || 3321}/` @@ -1009,7 +1009,7 @@ export class ChatgptManagement extends plugin { async userPage (e) { if (!Config.groupAdminPage && (e.isGroup || e.isPrivate)) { - await this.reply('请私聊发生命令', true) + await this.reply('请私聊发送命令', true) return true } const viewHost = Config.serverHost ? `http://${Config.serverHost}/` : `http://${await getPublicIP()}:${Config.serverPort || 3321}/`