Expand conditional checks for results, tracks, and load_type

This commit is contained in:
Parker M. 2024-12-18 17:42:23 -06:00
parent a0b6a5b43c
commit 235254257e
Signed by: parker
GPG Key ID: 505ED36FC12B5D5E
3 changed files with 54 additions and 18 deletions

View File

@ -63,9 +63,15 @@ class Play(commands.Cog):
dzsearch = f"dzsearch:{query}"
results = await player.node.get_tracks(dzsearch)
# If Deezer returned nothing
if not (results and results.tracks) or results.load_type in (
LoadType.EMPTY,
LoadType.ERROR,
if (
not results
or not results.tracks
or not results.load_type
or results.load_type
in (
LoadType.EMPTY,
LoadType.ERROR,
)
):
if YOUTUBE_SUPPORT:
ytmsearch = f"ytmsearch:{query}"
@ -84,9 +90,15 @@ class Play(commands.Cog):
results = await player.node.get_tracks(query)
# If there are no results found, set results/embed to None, handled further down
if not (results and results.tracks) or results.load_type in (
LoadType.EMPTY,
LoadType.ERROR,
if (
not results
or not results.tracks
or not results.load_type
or results.load_type
in (
LoadType.EMPTY,
LoadType.ERROR,
)
):
results, embed = None, None

View File

@ -62,16 +62,28 @@ async def add_song_recommendations(
ytsearch = f"ytsearch:{song} by {artist} audio"
results = await player.node.get_tracks(ytsearch)
if not (results and results.tracks) or results.load_type in (
LoadType.EMPTY,
LoadType.ERROR,
if (
not results
or not results.tracks
or not results.load_type
or results.load_type
in (
LoadType.EMPTY,
LoadType.ERROR,
)
):
dzsearch = f"dzsearch:{song}"
results = await player.node.get_tracks(dzsearch)
if not (results and results.tracks) or results.load_type in (
LoadType.EMPTY,
LoadType.ERROR,
if (
not results
or not results.tracks
or not results.load_type
or results.load_type
in (
LoadType.EMPTY,
LoadType.ERROR,
)
):
continue

View File

@ -30,17 +30,29 @@ class CustomAudioTrack(DeferredAudioTrack):
): # Load our 'actual' playback track using the metadata from this one.
dzsearch = f"dzsearch:{self.title} {self.author}"
results = await client.get_tracks(dzsearch)
if not (results and results.tracks) or results.load_type in (
LoadType.EMPTY,
LoadType.ERROR,
if (
not results
or not results.tracks
or not results.load_type
or results.load_type
in (
LoadType.EMPTY,
LoadType.ERROR,
)
):
if YOUTUBE_SUPPORT:
ytmsearch = f"ytmsearch:{self.title} {self.author}"
results = await client.get_tracks(ytmsearch)
if not (results and results.tracks) or results.load_type in (
LoadType.EMPTY,
LoadType.ERROR,
if (
not results
or not results.tracks
or not results.load_type
or results.load_type
in (
LoadType.EMPTY,
LoadType.ERROR,
)
):
ytsearch = f"ytsearch:{self.title} {self.author} audio"
results = await client.get_tracks(ytsearch)