Skip to content

Commit

Permalink
transports(daily): hot fix for receiving transport messages
Browse files Browse the repository at this point in the history
  • Loading branch information
aconchillo committed May 16, 2024
1 parent 9af3e1e commit 129acf8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/),
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

### Added
Expand All @@ -15,7 +21,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### 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
shutdown if no participant ever joined the room.
Expand Down
2 changes: 1 addition & 1 deletion src/pipecat/transports/services/daily.py
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,7 @@ def __init__(self, room_url: str, token: str | None, bot_name: str, params: Dail
on_first_participant_joined=self._on_first_participant_joined,
on_participant_joined=self._on_participant_joined,
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,
)
self._params = params
Expand Down

0 comments on commit 129acf8

Please sign in to comment.