Continue skipping tracks on LoadError

This commit is contained in:
Parker M. 2024-11-29 00:24:18 -06:00
parent 4e1bce4b9a
commit 33493b7b4e
Signed by: parker
GPG Key ID: 505ED36FC12B5D5E

View File

@ -70,13 +70,13 @@ class Skip(commands.Cog):
else: else:
pass pass
# Sometimes when a playlist/album of custom source tracks are loaded, one is not able to be found # Skip current track, continue skipping on LoadError
# so, when a user attempts to skip to that track, we get a LoadError. In this case, just pass it. while True:
try: try:
await player.skip() await player.skip()
except LoadError: break
pass except LoadError:
await player.skip() continue
if not player.current: if not player.current:
embed = create_embed( embed = create_embed(