From: Jozef Kruszynski <60214390+jozefKruszynski@users.noreply.github.com> Date: Thu, 22 Jan 2026 07:31:02 +0000 (+0100) Subject: fix(Tidal): Remove unnecessary deduping of recomendation rows (#3006) X-Git-Url: https://git.kitaultman.com/?a=commitdiff_plain;h=5bed7bd720dbd35f74baa8f7cafc36765d3e0dd4;p=music-assistant-server.git fix(Tidal): Remove unnecessary deduping of recomendation rows (#3006) --- diff --git a/music_assistant/providers/tidal/recommendations.py b/music_assistant/providers/tidal/recommendations.py index 64f270d8..56a87b59 100644 --- a/music_assistant/providers/tidal/recommendations.py +++ b/music_assistant/providers/tidal/recommendations.py @@ -62,13 +62,6 @@ class TidalRecommendationManager: parser = await self.get_page_content(page_path) page_name = page_path.split("/")[-1].replace("_", " ").title() - if page_path in ("pages/home", "pages/explore_top_music") and show_user_identifier: - if ( - sorted_instances - and self.provider.instance_id != sorted_instances[0].instance_id - ): - continue - for module_info in parser._module_map: title = module_info.get("title", "Unknown") if not title or title == "Unknown" or "Videos" in title: @@ -98,7 +91,7 @@ class TidalRecommendationManager: page_name = module_page_names.get(key, "Tidal") folder_name = title - if show_user_identifier and page_name not in ("Home", "Explore Top Music"): + if show_user_identifier: user_name = ( self.auth.user.profile_name or self.auth.user.user_name