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.EMPTY,
|
||||||
LoadType.ERROR,
|
LoadType.ERROR,
|
||||||
):
|
):
|
||||||
scsearch = f"scsearch:{query}"
|
ytmsearch = f"ytmsearch:{query}"
|
||||||
results = await player.node.get_tracks(scsearch)
|
results = await player.node.get_tracks(ytmsearch)
|
||||||
|
|
||||||
if not results.tracks or results.load_type in (
|
if not results.tracks or results.load_type in (
|
||||||
LoadType.EMPTY,
|
LoadType.EMPTY,
|
||||||
|
@ -24,8 +24,8 @@ class CustomAudioTrack(DeferredAudioTrack):
|
|||||||
LoadType.EMPTY,
|
LoadType.EMPTY,
|
||||||
LoadType.ERROR,
|
LoadType.ERROR,
|
||||||
):
|
):
|
||||||
scsearch = f"scsearch:{self.title} {self.author}"
|
ytmsearch = f"ytmsearch:{self.title} {self.author}"
|
||||||
results = await client.get_tracks(scsearch)
|
results = await client.get_tracks(ytmsearch)
|
||||||
|
|
||||||
if not results.tracks or results.load_type in (
|
if not results.tracks or results.load_type in (
|
||||||
LoadType.EMPTY,
|
LoadType.EMPTY,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user