Skip to content

Commit

Permalink
Fix track radio
Browse files Browse the repository at this point in the history
  • Loading branch information
quodrum-glas committed May 10, 2024
1 parent 0e7c98c commit 66c6a8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mopidy_tidal/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def tracks(self):
def radio(self):
return [
Track.from_api(t)
for t in self.api.get_track_radio().items()
for t in self.api.get_track_radio()
if isinstance(t, tdl.Track)
]

Expand Down

0 comments on commit 66c6a8e

Please sign in to comment.