From 81a18633ca42b3e045f1e6bd24db6f20ee6a37fc Mon Sep 17 00:00:00 2001 From: antonyesk601 Date: Tue, 10 Dec 2024 10:18:31 +0000 Subject: [PATCH] Remove duplicate frame push if simli connection isn't ready --- src/pipecat/services/simli.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pipecat/services/simli.py b/src/pipecat/services/simli.py index 5813cb27e..603aa1829 100644 --- a/src/pipecat/services/simli.py +++ b/src/pipecat/services/simli.py @@ -96,7 +96,6 @@ class SimliVideoService(FrameProcessor): logger.warning( "Simli Connection is not Initialized properly, passing audio to next processor" ) - await self.push_frame(frame, direction) except Exception as e: logger.exception(f"{self} exception: {e}") elif isinstance(frame, (EndFrame, CancelFrame)):