transports(daily): hot fix for receiving transport messages
This commit is contained in:
@@ -5,6 +5,12 @@ All notable changes to **pipecat** will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [0.0.15] - 2024-05-15
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Quick hot fix for receiving `DailyTransportMessage`.
|
||||||
|
|
||||||
## [0.0.14] - 2024-05-15
|
## [0.0.14] - 2024-05-15
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
@@ -15,7 +21,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Images are now resized to the size of the output camera.
|
- Images are now resized to the size of the output camera. This was causing
|
||||||
|
images not being displayed.
|
||||||
|
|
||||||
- Fixed an issue in `DailyTransport` that would not allow the input processor to
|
- Fixed an issue in `DailyTransport` that would not allow the input processor to
|
||||||
shutdown if no participant ever joined the room.
|
shutdown if no participant ever joined the room.
|
||||||
|
|||||||
@@ -590,7 +590,7 @@ class DailyTransport(BaseTransport):
|
|||||||
on_first_participant_joined=self._on_first_participant_joined,
|
on_first_participant_joined=self._on_first_participant_joined,
|
||||||
on_participant_joined=self._on_participant_joined,
|
on_participant_joined=self._on_participant_joined,
|
||||||
on_participant_left=self._on_participant_left,
|
on_participant_left=self._on_participant_left,
|
||||||
on_app_message=self._on_app_message,
|
on_app_message=self.on_app_message,
|
||||||
on_error=self._on_error,
|
on_error=self._on_error,
|
||||||
)
|
)
|
||||||
self._params = params
|
self._params = params
|
||||||
|
|||||||
Reference in New Issue
Block a user