Update search providers (Deezer, YTM, YT)
This commit is contained in:
parent
d6e0313a5a
commit
1bffa26776
@ -240,8 +240,8 @@ class Play(commands.Cog):
|
||||
LoadType.EMPTY,
|
||||
LoadType.ERROR,
|
||||
):
|
||||
scsearch = f"scsearch:{query}"
|
||||
results = await player.node.get_tracks(scsearch)
|
||||
ytmsearch = f"ytmsearch:{query}"
|
||||
results = await player.node.get_tracks(ytmsearch)
|
||||
|
||||
if not results.tracks or results.load_type in (
|
||||
LoadType.EMPTY,
|
||||
|
@ -24,8 +24,8 @@ class CustomAudioTrack(DeferredAudioTrack):
|
||||
LoadType.EMPTY,
|
||||
LoadType.ERROR,
|
||||
):
|
||||
scsearch = f"scsearch:{self.title} {self.author}"
|
||||
results = await client.get_tracks(scsearch)
|
||||
ytmsearch = f"ytmsearch:{self.title} {self.author}"
|
||||
results = await client.get_tracks(ytmsearch)
|
||||
|
||||
if not results.tracks or results.load_type in (
|
||||
LoadType.EMPTY,
|
||||
|
Loading…
x
Reference in New Issue
Block a user