From 6e8a202107ad31f4d0987792128fab662321c5b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Thu, 26 Sep 2024 22:42:19 -0700 Subject: [PATCH] rtvi: fix handling transport messages --- src/pipecat/processors/frameworks/rtvi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pipecat/processors/frameworks/rtvi.py b/src/pipecat/processors/frameworks/rtvi.py index 03d63c7f0..9721a6613 100644 --- a/src/pipecat/processors/frameworks/rtvi.py +++ b/src/pipecat/processors/frameworks/rtvi.py @@ -609,7 +609,7 @@ class RTVIProcessor(FrameProcessor): await self._stop(frame) # Data frames elif isinstance(frame, TransportMessageFrame): - await self._message_queue.put(frame) + await self._handle_transport_message(frame) elif isinstance(frame, RTVIActionFrame): await self._action_queue.put(frame) # Other frames