From 33493b7b4ec72636d73910cff93a9b3a3c863a2f Mon Sep 17 00:00:00 2001 From: Parker Date: Fri, 29 Nov 2024 00:24:18 -0600 Subject: [PATCH] Continue skipping tracks on LoadError --- code/cogs/skip.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/code/cogs/skip.py b/code/cogs/skip.py index 46a767f..eb4bf51 100644 --- a/code/cogs/skip.py +++ b/code/cogs/skip.py @@ -70,13 +70,13 @@ class Skip(commands.Cog): else: pass - # Sometimes when a playlist/album of custom source tracks are loaded, one is not able to be found - # so, when a user attempts to skip to that track, we get a LoadError. In this case, just pass it. - try: - await player.skip() - except LoadError: - pass - await player.skip() + # Skip current track, continue skipping on LoadError + while True: + try: + await player.skip() + break + except LoadError: + continue if not player.current: embed = create_embed(