Skip to content

Commit

Permalink
Merge branch 'v2' of https://github.com/Devoxin/lavalink.py into v2
Browse files Browse the repository at this point in the history
  • Loading branch information
devoxin committed Feb 25, 2018
2 parents c532a78 + ea1db00 commit 40eff10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/music.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ async def track_hook(self, player, event):
c = self.bot.get_channel(c)
if c:
embed = discord.Embed(colour=c.guild.me.top_role.colour, title='Now Playing', description=player.current.title)
embed.set_thumbnail(url=player.current.track_thumbnail)
embed.set_thumbnail(url=player.current.thumbnail)
await c.send(embed=embed)
elif event == 'QueueEndEvent':
c = player.fetch('channel')
Expand Down

0 comments on commit 40eff10

Please sign in to comment.