From 5b30476a484ac34211bd8bdd5987c10cc703134f Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Mon, 27 Mar 2023 13:10:24 +0200 Subject: [PATCH] fix typo --- music_assistant/server/helpers/tags.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/music_assistant/server/helpers/tags.py b/music_assistant/server/helpers/tags.py index b962f5ef..af557efa 100644 --- a/music_assistant/server/helpers/tags.py +++ b/music_assistant/server/helpers/tags.py @@ -88,7 +88,7 @@ class AudioTags: or self.tags.get("albumtype") or self.tags.get("releasetype") ) - if album_type_tag and "live" in tag.lower(): + if album_type_tag and "live" in album_type_tag.lower(): # yes, this can happen return "Live" return "" -- 2.34.1