fix: TypeError when with --include-participate-songs arg

pull/13/head^2
WorldObservationLog 4 months ago
parent 6a109dd53a
commit 841c6e7db0
  1. 2
      src/api.py

@ -223,7 +223,7 @@ async def get_songs_from_artist(artist_id: str, storefront: str, token: str, lan
if artist_song.next:
next_songs = await get_songs_from_artist(artist_id, storefront, token, lang, offset + 20)
songs.extend(next_songs)
return list[set(songs)]
return list(set(songs))
@alru_cache

Loading…
Cancel
Save