diff --git a/README.md b/README.md index a5552f8..efe9c25 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/custom_components/apple_tv/manifest.json b/custom_components/apple_tv/manifest.json index dedc39e..0c7a7bb 100644 --- a/custom_components/apple_tv/manifest.json +++ b/custom_components/apple_tv/manifest.json @@ -13,6 +13,6 @@ "_hscp._tcp.local." ], "codeowners": ["@postlund"], - "version": "1.5.0", + "version": "1.6.0", "iot_class": "local_push" } diff --git a/custom_components/apple_tv/media_player.py b/custom_components/apple_tv/media_player.py index 1a3fdc5..c7195d1 100644 --- a/custom_components/apple_tv/media_player.py +++ b/custom_components/apple_tv/media_player.py @@ -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) diff --git a/info.md b/info.md index a5552f8..efe9c25 100644 --- a/info.md +++ b/info.md @@ -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.