openclaw-quiubo 2.6.58 → 2.6.59
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/index.js +0 -2
- package/dist/index.js.map +2 -2
- package/dist/src/activity-hook.d.ts.map +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -15206,7 +15206,6 @@ function registerActivityHook(api) {
|
|
|
15206
15206
|
"before_tool_call",
|
|
15207
15207
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
15208
15208
|
(_event, ctx) => {
|
|
15209
|
-
if (ctx.channelId !== "quiubo") return;
|
|
15210
15209
|
const sessionKey = ctx.sessionKey;
|
|
15211
15210
|
const groupId = extractGroupIdFromSessionKey(sessionKey);
|
|
15212
15211
|
if (!groupId) return;
|
|
@@ -15242,7 +15241,6 @@ function registerActivityHook(api) {
|
|
|
15242
15241
|
"after_tool_call",
|
|
15243
15242
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
15244
15243
|
(_event, ctx) => {
|
|
15245
|
-
if (ctx.channelId !== "quiubo") return;
|
|
15246
15244
|
const sessionKey = ctx.sessionKey;
|
|
15247
15245
|
const groupId = extractGroupIdFromSessionKey(sessionKey);
|
|
15248
15246
|
if (!groupId) return;
|