mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-12-08 10:22:31 -05:00
[Audio] Fix for AttributeError in [p]queue (#458)
This commit is contained in:
@@ -412,7 +412,7 @@ class Audio:
|
||||
while any([d.is_alive() for d in downloaders]):
|
||||
await asyncio.sleep(0.1)
|
||||
|
||||
songs = [d.song for d in downloaders]
|
||||
songs = [d.song for d in downloaders if d.song is not None]
|
||||
return songs
|
||||
|
||||
async def _download_next(self, server, curr_dl, next_dl):
|
||||
|
||||
Reference in New Issue
Block a user