Close connection after synthesis so HA knows response is complete
All checks were successful
Build and Push Docker Image / build (push) Successful in 2m12s

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-08 19:51:57 -04:00
parent 83aa2ec08c
commit 1cda188c98

View File

@@ -90,7 +90,7 @@ class KokoroEventHandler(AsyncEventHandler):
if Synthesize.is_type(event.type): if Synthesize.is_type(event.type):
await self._handle_synthesize(Synthesize.from_event(event)) await self._handle_synthesize(Synthesize.from_event(event))
return True return False # close connection so HA knows response is complete
return True return True