From f94a60f38198b7ac99a9f5619562dd8ad02a361e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleix=20Conchillo=20Flaqu=C3=A9?= Date: Sun, 25 Jan 2026 15:42:09 -0800 Subject: [PATCH] transports: fix broadcast_frame_class reference --- src/pipecat/transports/daily/transport.py | 2 +- src/pipecat/transports/smallwebrtc/transport.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pipecat/transports/daily/transport.py b/src/pipecat/transports/daily/transport.py index fe106ebeb..20a0be29f 100644 --- a/src/pipecat/transports/daily/transport.py +++ b/src/pipecat/transports/daily/transport.py @@ -1733,7 +1733,7 @@ class DailyInputTransport(BaseInputTransport): message: The message data to send. sender: ID of the message sender. """ - await self.broadcast_frame_class( + await self.broadcast_frame( DailyInputTransportMessageFrame, message=message, participant_id=sender ) diff --git a/src/pipecat/transports/smallwebrtc/transport.py b/src/pipecat/transports/smallwebrtc/transport.py index bcc3c8b79..7e76771c4 100644 --- a/src/pipecat/transports/smallwebrtc/transport.py +++ b/src/pipecat/transports/smallwebrtc/transport.py @@ -698,7 +698,7 @@ class SmallWebRTCInputTransport(BaseInputTransport): message: The application message to process. """ logger.debug(f"Received app message inside SmallWebRTCInputTransport {message}") - await self.broadcast_frame_class(InputTransportMessageFrame, message=message) + await self.broadcast_frame(InputTransportMessageFrame, message=message) # Add this method similar to DailyInputTransport.request_participant_image async def request_participant_image(self, frame: UserImageRequestFrame):