mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-08 21:48:27 +00:00
fix(typing): keep tool-start ttl mode-safe (#452, thanks @thesash)
This commit is contained in:
@@ -68,8 +68,9 @@ export function createTypingSignaler(params: {
|
||||
|
||||
const signalToolStart = async () => {
|
||||
if (disabled) return;
|
||||
// Keep typing indicator alive during tool execution
|
||||
await typing.startTypingLoop();
|
||||
if (!typing.isActive()) return;
|
||||
// Keep typing indicator alive during tool execution without changing mode semantics.
|
||||
typing.refreshTypingTtl();
|
||||
};
|
||||
|
||||
return {
|
||||
|
||||
Reference in New Issue
Block a user