From e54ec3ba05f7f9f7cc01e160043db51541e524eb Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Tue, 29 Sep 2020 10:19:26 +0200 Subject: [PATCH 1/2] Fix ID3 tagging in TTS (#40740) --- homeassistant/components/tts/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/tts/__init__.py b/homeassistant/components/tts/__init__.py index e5f762af647..2eb12750fe8 100644 --- a/homeassistant/components/tts/__init__.py +++ b/homeassistant/components/tts/__init__.py @@ -466,7 +466,7 @@ class SpeechManager: artist = options.get("voice") try: - tts_file = mutagen.File(data_bytes, easy=True) + tts_file = mutagen.File(data_bytes) if tts_file is not None: tts_file["artist"] = ID3Text(encoding=3, text=artist) tts_file["album"] = ID3Text(encoding=3, text=album) From ebacc15e72bfee93e5492b2ee460d9543c908750 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Tue, 29 Sep 2020 12:38:30 +0200 Subject: [PATCH 2/2] Bumped version to 0.115.5 --- homeassistant/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/const.py b/homeassistant/const.py index bac9a5c5e93..7e695cb28ab 100644 --- a/homeassistant/const.py +++ b/homeassistant/const.py @@ -1,7 +1,7 @@ """Constants used by Home Assistant components.""" MAJOR_VERSION = 0 MINOR_VERSION = 115 -PATCH_VERSION = "4" +PATCH_VERSION = "5" __short_version__ = f"{MAJOR_VERSION}.{MINOR_VERSION}" __version__ = f"{__short_version__}.{PATCH_VERSION}" REQUIRED_PYTHON_VER = (3, 7, 1)