Skip to content

Commit

Permalink
Another TTS fix
Browse files Browse the repository at this point in the history
  • Loading branch information
postlund committed Oct 20, 2021
1 parent 3c71ba2 commit 7fdf722
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ shipped with Home Assistant:

## Changes

## Release 1.6

Amateur hour: fix another error with the TTS change in previous release.

### Release 1.5

Fix error when using TTS.
Expand Down
2 changes: 1 addition & 1 deletion custom_components/apple_tv/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
"_hscp._tcp.local."
],
"codeowners": ["@postlund"],
"version": "1.5.0",
"version": "1.6.0",
"iot_class": "local_push"
}
2 changes: 1 addition & 1 deletion custom_components/apple_tv/media_player.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ async def async_play_media(self, media_type, media_id, **kwargs):

try:

async def _wait_for_tts_file(self, tts_file):
async def _wait_for_tts_file(tts_file):
_LOGGER.debug("Waiting for TTS file %s to appear", tts_file)
while not path.exists(tts_file):
await asyncio.sleep(0.5)
Expand Down
4 changes: 4 additions & 0 deletions info.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ shipped with Home Assistant:

## Changes

## Release 1.6

Amateur hour: fix another error with the TTS change in previous release.

### Release 1.5

Fix error when using TTS.
Expand Down

0 comments on commit 7fdf722

Please sign in to comment.