Skip to content

Commit

Permalink
Fix small typo in Subsonic provider (#1818)
Browse files Browse the repository at this point in the history
  • Loading branch information
OzGav authored and marcelveldt committed Jan 2, 2025
1 parent e11ddd2 commit 0d70dbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion music_assistant/providers/opensubsonic/sonic_provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ async def get_track(self, prov_track_id: str) -> Track:
except (ParameterError, DataNotFoundError) as e:
msg = f"Item {prov_track_id} not found"
raise MediaNotFoundError(msg) from e
album = await self._run_async(self.get_album, prov_ablum_id=sonic_song.parent)
album = await self._run_async(self.get_album, prov_album_id=sonic_song.parent)
return self._parse_track(sonic_song, album=album)

async def get_artist_albums(self, prov_artist_id: str) -> list[Album]:
Expand Down

0 comments on commit 0d70dbd

Please sign in to comment.