patch build track to escape chars properly
This commit is contained in:
parent
4fc9bd8810
commit
2d8acf7800
|
|
@ -20,7 +20,7 @@ if not discord.version_info.major >= 2:
|
|||
"using 'pip install discord.py'",
|
||||
)
|
||||
|
||||
__version__ = "2.6.0"
|
||||
__version__ = "2.6.1a"
|
||||
__title__ = "pomice"
|
||||
__author__ = "cloudwithax"
|
||||
__license__ = "GPL-3.0"
|
||||
|
|
|
|||
|
|
@ -544,7 +544,7 @@ class Node:
|
|||
data: dict = await self.send(
|
||||
method="GET",
|
||||
path="decodetrack",
|
||||
query=f"encodedTrack={identifier}",
|
||||
query=f"encodedTrack={quote(identifier)}",
|
||||
)
|
||||
return Track(
|
||||
track_id=identifier,
|
||||
|
|
|
|||
Loading…
Reference in New Issue