Accept legacy typing IPC as alias for typing-start.

Stops unhandled ipc warnings when the UI or older clients send type typing.

Co-authored-by: Cursor <[email protected]>
This commit is contained in:
Raven Scott
2026-05-23 13:10:11 -04:00
co-authored by Cursor
parent 9d344ca130
commit de6a49b7ab
+1 -1
View File
@@ -1207,7 +1207,7 @@ async function dispatchUiMessage (platform, msg, hooks = {}) {
pushState()
return true
}
if (t === 'typing-start') {
if (t === 'typing-start' || t === 'typing') {
platform.signalTyping()
return true
}