commit
a0b6a5b43c
@ -32,11 +32,11 @@ plugins:
|
|||||||
flowerytts: falsee
|
flowerytts: falsee
|
||||||
youtube: false
|
youtube: false
|
||||||
deezer:
|
deezer:
|
||||||
masterDecryptionKey: "" # the master key used for decrypting the deezer tracks. (yes this is not here you need to get it from somewhere else)
|
masterDecryptionKey: "" # master decryption key from deezer
|
||||||
|
|
||||||
lavalink:
|
lavalink:
|
||||||
plugins:
|
plugins:
|
||||||
- dependency: "dev.lavalink.youtube:youtube-plugin:1.8.3"
|
- dependency: "dev.lavalink.youtube:youtube-plugin:1.11.1"
|
||||||
snapshot: false
|
snapshot: false
|
||||||
- dependency: "com.github.topi314.lavasrc:lavasrc-plugin:4.3.0"
|
- dependency: "com.github.topi314.lavasrc:lavasrc-plugin:4.3.0"
|
||||||
snapshot: false
|
snapshot: false
|
||||||
|
@ -63,7 +63,7 @@ class Play(commands.Cog):
|
|||||||
dzsearch = f"dzsearch:{query}"
|
dzsearch = f"dzsearch:{query}"
|
||||||
results = await player.node.get_tracks(dzsearch)
|
results = await player.node.get_tracks(dzsearch)
|
||||||
# If Deezer returned nothing
|
# If Deezer returned nothing
|
||||||
if not results.tracks or results.load_type in (
|
if not (results and results.tracks) or results.load_type in (
|
||||||
LoadType.EMPTY,
|
LoadType.EMPTY,
|
||||||
LoadType.ERROR,
|
LoadType.ERROR,
|
||||||
):
|
):
|
||||||
@ -71,7 +71,9 @@ class Play(commands.Cog):
|
|||||||
ytmsearch = f"ytmsearch:{query}"
|
ytmsearch = f"ytmsearch:{query}"
|
||||||
results = await player.node.get_tracks(ytmsearch)
|
results = await player.node.get_tracks(ytmsearch)
|
||||||
# If YouTube Music returned nothing
|
# If YouTube Music returned nothing
|
||||||
if not results.tracks or results.load_type in (
|
if not (
|
||||||
|
results and results.tracks
|
||||||
|
) or results.load_type in (
|
||||||
LoadType.EMPTY,
|
LoadType.EMPTY,
|
||||||
LoadType.ERROR,
|
LoadType.ERROR,
|
||||||
):
|
):
|
||||||
@ -82,7 +84,7 @@ class Play(commands.Cog):
|
|||||||
results = await player.node.get_tracks(query)
|
results = await player.node.get_tracks(query)
|
||||||
|
|
||||||
# If there are no results found, set results/embed to None, handled further down
|
# If there are no results found, set results/embed to None, handled further down
|
||||||
if not results.tracks or results.load_type in (
|
if not (results and results.tracks) or results.load_type in (
|
||||||
LoadType.EMPTY,
|
LoadType.EMPTY,
|
||||||
LoadType.ERROR,
|
LoadType.ERROR,
|
||||||
):
|
):
|
||||||
|
@ -62,14 +62,14 @@ async def add_song_recommendations(
|
|||||||
ytsearch = f"ytsearch:{song} by {artist} audio"
|
ytsearch = f"ytsearch:{song} by {artist} audio"
|
||||||
results = await player.node.get_tracks(ytsearch)
|
results = await player.node.get_tracks(ytsearch)
|
||||||
|
|
||||||
if not results.tracks or results.load_type in (
|
if not (results and results.tracks) or results.load_type in (
|
||||||
LoadType.EMPTY,
|
LoadType.EMPTY,
|
||||||
LoadType.ERROR,
|
LoadType.ERROR,
|
||||||
):
|
):
|
||||||
dzsearch = f"dzsearch:{song}"
|
dzsearch = f"dzsearch:{song}"
|
||||||
results = await player.node.get_tracks(dzsearch)
|
results = await player.node.get_tracks(dzsearch)
|
||||||
|
|
||||||
if not results.tracks or results.load_type in (
|
if not (results and results.tracks) or results.load_type in (
|
||||||
LoadType.EMPTY,
|
LoadType.EMPTY,
|
||||||
LoadType.ERROR,
|
LoadType.ERROR,
|
||||||
):
|
):
|
||||||
|
@ -30,7 +30,7 @@ class CustomAudioTrack(DeferredAudioTrack):
|
|||||||
): # Load our 'actual' playback track using the metadata from this one.
|
): # Load our 'actual' playback track using the metadata from this one.
|
||||||
dzsearch = f"dzsearch:{self.title} {self.author}"
|
dzsearch = f"dzsearch:{self.title} {self.author}"
|
||||||
results = await client.get_tracks(dzsearch)
|
results = await client.get_tracks(dzsearch)
|
||||||
if not results.tracks or results.load_type in (
|
if not (results and results.tracks) or results.load_type in (
|
||||||
LoadType.EMPTY,
|
LoadType.EMPTY,
|
||||||
LoadType.ERROR,
|
LoadType.ERROR,
|
||||||
):
|
):
|
||||||
@ -38,14 +38,16 @@ class CustomAudioTrack(DeferredAudioTrack):
|
|||||||
ytmsearch = f"ytmsearch:{self.title} {self.author}"
|
ytmsearch = f"ytmsearch:{self.title} {self.author}"
|
||||||
results = await client.get_tracks(ytmsearch)
|
results = await client.get_tracks(ytmsearch)
|
||||||
|
|
||||||
if not results.tracks or results.load_type in (
|
if not (results and results.tracks) or results.load_type in (
|
||||||
LoadType.EMPTY,
|
LoadType.EMPTY,
|
||||||
LoadType.ERROR,
|
LoadType.ERROR,
|
||||||
):
|
):
|
||||||
ytsearch = f"ytsearch:{self.title} {self.author} audio"
|
ytsearch = f"ytsearch:{self.title} {self.author} audio"
|
||||||
results = await client.get_tracks(ytsearch)
|
results = await client.get_tracks(ytsearch)
|
||||||
|
|
||||||
if not results.tracks or results.load_type in (
|
if not (
|
||||||
|
results and results.tracks
|
||||||
|
) or results.load_type in (
|
||||||
LoadType.EMPTY,
|
LoadType.EMPTY,
|
||||||
LoadType.ERROR,
|
LoadType.ERROR,
|
||||||
):
|
):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user