processors(rtvi): add support for client-ready message (fix)

This commit is contained in:
Aleix Conchillo Flaqué
2024-08-20 07:54:11 -07:00
parent 9d1c16e996
commit 80c89a39c9

View File

@@ -581,7 +581,7 @@ class RTVIProcessor(FrameProcessor):
await self._push_transport_message(message)
async def _maybe_send_bot_ready(self):
if self._pipeline_started and self._client_ready_:
if self._pipeline_started and self._client_ready:
await self._send_bot_ready()
await self._update_config(self._config)