mirror of
https://github.com/zhaarey/AppleMusicDecrypt.git
synced 2025-10-23 15:11:06 +00:00
fix: TypeError when with --include-participate-songs arg
This commit is contained in:
@@ -223,7 +223,7 @@ async def get_songs_from_artist(artist_id: str, storefront: str, token: str, lan
|
|||||||
if artist_song.next:
|
if artist_song.next:
|
||||||
next_songs = await get_songs_from_artist(artist_id, storefront, token, lang, offset + 20)
|
next_songs = await get_songs_from_artist(artist_id, storefront, token, lang, offset + 20)
|
||||||
songs.extend(next_songs)
|
songs.extend(next_songs)
|
||||||
return list[set(songs)]
|
return list(set(songs))
|
||||||
|
|
||||||
|
|
||||||
@alru_cache
|
@alru_cache
|
||||||
|
|||||||
Reference in New Issue
Block a user