openclaw-quiubo 2.6.64 → 2.6.66
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 +4 -0
- package/dist/index.js.map +2 -2
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -14994,6 +14994,10 @@ async function routeInboundMessage(opts) {
|
|
|
14994
14994
|
log?.debug?.(`[${accountId}] Quiubo: skipping empty ${info.kind} reply`);
|
|
14995
14995
|
return;
|
|
14996
14996
|
}
|
|
14997
|
+
if (payload.text && /^\s*(NO_REPLY|HEARTBEAT_OK)(\s+(NO_REPLY|HEARTBEAT_OK))*\s*$/i.test(payload.text) && outboundAttachments.length === 0) {
|
|
14998
|
+
log?.debug?.(`[${accountId}] Quiubo: suppressed silent reply token in ${info.kind} reply`);
|
|
14999
|
+
return;
|
|
15000
|
+
}
|
|
14997
15001
|
const gw = gateways.get(accountId);
|
|
14998
15002
|
const cachedConfig = gw?.getBotConfig(groupId);
|
|
14999
15003
|
if (cachedConfig?.grantedScopes && !cachedConfig.grantedScopes.includes("send_messages")) {
|