mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-15 19:21:08 +00:00
fix(plugins): clean bundled extension lint tail
This commit is contained in:
@@ -81,11 +81,11 @@ export default defineBundledChannelEntry({
|
||||
});
|
||||
api.on("subagent_delivery_target", async (event) => {
|
||||
const { handleFeishuSubagentDeliveryTarget } = await loadFeishuSubagentHooksModule();
|
||||
return await handleFeishuSubagentDeliveryTarget(event);
|
||||
return handleFeishuSubagentDeliveryTarget(event);
|
||||
});
|
||||
api.on("subagent_ended", async (event) => {
|
||||
const { handleFeishuSubagentEnded } = await loadFeishuSubagentHooksModule();
|
||||
await handleFeishuSubagentEnded(event);
|
||||
handleFeishuSubagentEnded(event);
|
||||
});
|
||||
registerFeishuDocTools(api);
|
||||
registerFeishuChatTools(api);
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
const CONTROL_CHARS_RE = /[\u0000-\u001f\u007f]/;
|
||||
const CONTROL_CHARS_RE = /\p{Cc}/u;
|
||||
const MAX_EXTERNAL_KEY_LENGTH = 512;
|
||||
|
||||
export function normalizeFeishuExternalKey(value: unknown): string | undefined {
|
||||
|
||||
Reference in New Issue
Block a user