fix: add name back to abs/itunes recommendation folders (#3170)
authorFabian Munkes <105975993+fmunkes@users.noreply.github.com>
Mon, 16 Feb 2026 17:45:12 +0000 (18:45 +0100)
committerGitHub <noreply@github.com>
Mon, 16 Feb 2026 17:45:12 +0000 (18:45 +0100)
add name back to recommendation folders

music_assistant/providers/audiobookshelf/__init__.py
music_assistant/providers/itunes_podcasts/__init__.py

index 01199c57f5f56c552ac9a6fc26eecd08e40e7c01..a30898cec031e77a35d9fe1ce37762c4d1d155dd 100644 (file)
@@ -822,8 +822,6 @@ for more details.
             # newest-episodes
             # etc
             name = f"{shelf_id.capitalize().replace('-', ' ')}"
-            if ABS_SHELF_ID_TRANSLATION_KEY.get(shelf_id):
-                name = ""  # use translation key if available
             folders.append(
                 RecommendationFolder(
                     item_id=f"{shelf_id}",
@@ -862,7 +860,7 @@ for more details.
         folders.append(
             RecommendationFolder(
                 item_id="browse",
-                name="",  # use translation key
+                name="Libraries",
                 icon="mdi-bookshelf",
                 translation_key=translation_key,
                 items=UniqueList(browse_items),
index fab24f7a0d3c502ca919d394fdeeac05c0931c44..2a2567702f7c79a367310c489972deedf2475d55 100644 (file)
@@ -262,7 +262,7 @@ class ITunesPodcastsProvider(MusicProvider):
         return [
             RecommendationFolder(
                 item_id="itunes-top-podcasts",
-                name="",
+                name="Trending Podcasts",
                 icon="mdi-trending-up",
                 translation_key="trending_podcasts",
                 items=UniqueList(podcast_list),