openclaw-lark-multi-agent 1.0.14 â 1.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/feishu-bot.js +2 -0
- package/package.json +1 -1
package/dist/feishu-bot.js
CHANGED
|
@@ -1713,6 +1713,7 @@ export class FeishuBot {
|
|
|
1713
1713
|
: chairman
|
|
1714
1714
|
? chairman === this.config.name ? `ð æŊïž${chairman}ïž` : `åĶïžå―åïž${chairman}ïž`
|
|
1715
1715
|
: "æŠčŪūį―Ū";
|
|
1716
|
+
const localeStatus = chatType === "p2p" ? this.locale : this.chatLocale(chatId);
|
|
1716
1717
|
const statusText = [
|
|
1717
1718
|
`ð ${this.config.name} Bot Status`,
|
|
1718
1719
|
`ââââââââââââââââââ`,
|
|
@@ -1728,6 +1729,7 @@ export class FeishuBot {
|
|
|
1728
1729
|
`ð§ Verbose: ${verboseStatus}`,
|
|
1729
1730
|
`ðïļ Mode: ${mode}`,
|
|
1730
1731
|
`ð Chairman: ${chairmanStatus}`,
|
|
1732
|
+
`ð Locale: ${localeStatus}`,
|
|
1731
1733
|
].join("\n");
|
|
1732
1734
|
await this.replyMessage(messageId, statusText);
|
|
1733
1735
|
}
|