add missing context to Track.original
This commit is contained in:
parent
7d2600ed7f
commit
cb46150ce2
|
|
@ -193,7 +193,8 @@ class Player(VoiceProtocol):
|
||||||
"""Plays a track. If a Spotify track is passed in, it will be handled accordingly."""
|
"""Plays a track. If a Spotify track is passed in, it will be handled accordingly."""
|
||||||
if track.spotify:
|
if track.spotify:
|
||||||
search: Track = (await self._node.get_tracks(
|
search: Track = (await self._node.get_tracks(
|
||||||
f"{track._search_type}:{track.author} - {track.title}"
|
f"{track._search_type}:{track.author} - {track.title}",
|
||||||
|
ctx=track.ctx
|
||||||
))[0]
|
))[0]
|
||||||
track.original = search
|
track.original = search
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue