fix(Tidal): Remove unnecessary deduping of recomendation rows (#3006)
authorJozef Kruszynski <60214390+jozefKruszynski@users.noreply.github.com>
Thu, 22 Jan 2026 07:31:02 +0000 (08:31 +0100)
committerGitHub <noreply@github.com>
Thu, 22 Jan 2026 07:31:02 +0000 (08:31 +0100)
music_assistant/providers/tidal/recommendations.py

index 64f270d8b55dceefdb0e94e6ec25a92236b9a0f1..56a87b59ac3aab21c057c8cd16a26385dc53ab36 100644 (file)
@@ -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