Skip to content

Commit 88cb13d

Browse files
Auto-reply: fix typing stop race (openclaw#270)
1 parent 35a2140 commit 88cb13d

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
- Auth: lock auth profile refreshes to avoid multi-instance OAuth logouts; keep credentials on refresh failure.
1616
- Onboarding: prompt immediately for OpenAI Codex redirect URL on remote/headless logins.
1717
- Typing indicators: stop typing once the reply dispatcher drains to prevent stuck typing across Discord/Telegram/WhatsApp.
18+
- Typing indicators: fix a race that could keep the typing indicator stuck after quick replies. Thanks @thewilloftheshadow for PR #270.
1819
- Google: merge consecutive messages to satisfy strict role alternation for Google provider models. Thanks @Asleep123 for PR #266.
1920
- WhatsApp/Telegram: add groupPolicy handling for group messages and normalize allowFrom matching (tg/telegram prefixes). Thanks @mneves75.
2021
- Auto-reply: add configurable ack reactions for inbound messages (default 👀 or `identity.emoji`) with scope controls. Thanks @obviyus for PR #178.

src/auto-reply/reply/typing.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,6 @@ export function createTypingController(params: {
7676
const ensureStart = async () => {
7777
if (!active) {
7878
active = true;
79-
runComplete = false;
80-
dispatchIdle = false;
8179
}
8280
if (started) return;
8381
started = true;

0 commit comments

Comments
 (0)