fix: strip repeated heartbeat ok tails
This commit is contained in:
@@ -8,6 +8,7 @@
|
|||||||
- Group chat activation modes: per-group `/activation mention|always` command with status visibility.
|
- Group chat activation modes: per-group `/activation mention|always` command with status visibility.
|
||||||
|
|
||||||
### Fixes
|
### Fixes
|
||||||
|
- Heartbeat replies now strip repeated `HEARTBEAT_OK` tails to avoid accidental “OK OK” spam.
|
||||||
- WhatsApp send now preserves existing JIDs (including group `@g.us`) instead of coercing to `@s.whatsapp.net`. (Thanks @arun-8687.)
|
- WhatsApp send now preserves existing JIDs (including group `@g.us`) instead of coercing to `@s.whatsapp.net`. (Thanks @arun-8687.)
|
||||||
- Telegram/WhatsApp: native replies now target the original inbound message; reply context is appended to `Body` and captured in `ReplyTo*` fields. (Thanks @joshp123 for the PR and follow-up question.)
|
- Telegram/WhatsApp: native replies now target the original inbound message; reply context is appended to `Body` and captured in `ReplyTo*` fields. (Thanks @joshp123 for the PR and follow-up question.)
|
||||||
- WhatsApp web creds persistence hardened; credentials are restored before auth checks and QR login auto-restarts if it stalls.
|
- WhatsApp web creds persistence hardened; credentials are restored before auth checks and QR login auto-restarts if it stalls.
|
||||||
|
|||||||
@@ -134,6 +134,29 @@ describe("heartbeat helpers", () => {
|
|||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it("strips repeated OK tails after heartbeat token", () => {
|
||||||
|
expect(stripHeartbeatToken("HEARTBEAT_OK_OK_OK")).toEqual({
|
||||||
|
shouldSkip: true,
|
||||||
|
text: "",
|
||||||
|
});
|
||||||
|
expect(stripHeartbeatToken("HEARTBEAT_OK_OK")).toEqual({
|
||||||
|
shouldSkip: true,
|
||||||
|
text: "",
|
||||||
|
});
|
||||||
|
expect(stripHeartbeatToken("HEARTBEAT_OK _OK")).toEqual({
|
||||||
|
shouldSkip: true,
|
||||||
|
text: "",
|
||||||
|
});
|
||||||
|
expect(stripHeartbeatToken("HEARTBEAT_OK OK")).toEqual({
|
||||||
|
shouldSkip: true,
|
||||||
|
text: "",
|
||||||
|
});
|
||||||
|
expect(stripHeartbeatToken("ALERT HEARTBEAT_OK_OK")).toEqual({
|
||||||
|
shouldSkip: false,
|
||||||
|
text: "ALERT",
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
it("resolves heartbeat minutes with default and overrides", () => {
|
it("resolves heartbeat minutes with default and overrides", () => {
|
||||||
const cfgBase: ClawdisConfig = {
|
const cfgBase: ClawdisConfig = {
|
||||||
inbound: {},
|
inbound: {},
|
||||||
|
|||||||
@@ -203,10 +203,16 @@ export function stripHeartbeatToken(raw?: string) {
|
|||||||
const trimmed = raw.trim();
|
const trimmed = raw.trim();
|
||||||
if (!trimmed) return { shouldSkip: true, text: "" };
|
if (!trimmed) return { shouldSkip: true, text: "" };
|
||||||
if (trimmed === HEARTBEAT_TOKEN) return { shouldSkip: true, text: "" };
|
if (trimmed === HEARTBEAT_TOKEN) return { shouldSkip: true, text: "" };
|
||||||
const withoutToken = trimmed.replaceAll(HEARTBEAT_TOKEN, "").trim();
|
const hadToken = trimmed.includes(HEARTBEAT_TOKEN);
|
||||||
|
let withoutToken = trimmed.replaceAll(HEARTBEAT_TOKEN, "").trim();
|
||||||
|
if (hadToken && withoutToken) {
|
||||||
|
// LLMs sometimes echo malformed HEARTBEAT_OK_OK... tails; strip trailing OK runs to avoid spam.
|
||||||
|
withoutToken = withoutToken.replace(/[\s_]*OK(?:[\s_]*OK)*$/gi, "").trim();
|
||||||
|
}
|
||||||
|
const shouldSkip = withoutToken.length === 0;
|
||||||
return {
|
return {
|
||||||
shouldSkip: withoutToken.length === 0,
|
shouldSkip,
|
||||||
text: withoutToken || trimmed,
|
text: shouldSkip ? "" : withoutToken || trimmed,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user