Fix typo in parse_album of Qobuz provider
authorMarcel van der Veldt <m.vanderveldt@outlook.com>
Tue, 23 Sep 2025 14:51:25 +0000 (16:51 +0200)
committerMarcel van der Veldt <m.vanderveldt@outlook.com>
Tue, 23 Sep 2025 14:53:32 +0000 (16:53 +0200)
music_assistant/providers/qobuz/__init__.py

index bfbaec5ca944d7cfcc1cd97a1eebc9e717aafc4d..212b119f27c251e36d04d9797401427f735b518d 100644 (file)
@@ -518,7 +518,7 @@ class QobuzProvider(MusicProvider):
             artist.metadata.description = artist_obj["biography"].get("content")
         return artist
 
-    async def parse_album(
+    async def _parse_album(
         self, album_obj: dict[str, Any], artist_obj: dict[str, Any] | None = None
     ) -> Album:
         """Parse qobuz album object to generic layout."""