diff --git a/discordbot.py b/discordbot.py index 0ef8f103..7817625f 100644 --- a/discordbot.py +++ b/discordbot.py @@ -672,7 +672,8 @@ class RoyalDiscordBot(discord.Client): while True: await asyncio.sleep(1) # Might have some problems with del - for index, video in enumerate(self.video_queue.not_ready_videos(self.max_videos_to_predownload)): + for index, video in enumerate(self.video_queue.not_ready_videos(self.max_videos_to_predownload) + + [self.video_queue.now_playing]): try: with async_timeout.timeout(self.max_video_ready_time): await loop.run_in_executor(executor, video.ready_up)