[Away] Add link to spotify song in listening status (#143)
This commit is contained in:
21
away/away.py
21
away/away.py
@@ -98,6 +98,7 @@ class Away(commands.Cog):
|
||||
em.set_thumbnail(url=thumbnail)
|
||||
elif state == "listening":
|
||||
em = discord.Embed(color=author.activity.color)
|
||||
url = f"https://open.spotify.com/track/{author.activity.track_id}"
|
||||
artist_title = f"{author.activity.title} by " + ", ".join(
|
||||
a for a in author.activity.artists
|
||||
)
|
||||
@@ -105,21 +106,33 @@ class Away(commands.Cog):
|
||||
len(author.display_name) + 27
|
||||
) # incase we go over the max allowable size
|
||||
em.set_author(
|
||||
name=f"{author.display_name} is currently listening to {artist_title[:limit]}",
|
||||
name=f"{author.display_name} is currently listening to",
|
||||
icon_url=avatar,
|
||||
url=url,
|
||||
)
|
||||
em.description = message + "\n" + self._draw_play(author.activity)
|
||||
em.description = (
|
||||
f"{message}\n "
|
||||
f"[{artist_title}]({url})\n"
|
||||
f"{self._draw_play(author.activity)}"
|
||||
)
|
||||
|
||||
em.set_thumbnail(url=author.activity.album_cover_url)
|
||||
elif state == "listeningcustom":
|
||||
activity = [c for c in author.activities if c.type == discord.ActivityType.listening]
|
||||
em = discord.Embed(color=activity[0].color)
|
||||
url = f"https://open.spotify.com/track/{activity[0].track_id}"
|
||||
artist_title = f"{activity[0].title} by " + ", ".join(a for a in activity[0].artists)
|
||||
limit = 256 - (len(author.display_name) + 27)
|
||||
em.set_author(
|
||||
name=f"{author.display_name} is currently listening to {artist_title[:limit]}",
|
||||
name=f"{author.display_name} is currently listening to",
|
||||
icon_url=avatar,
|
||||
url=url
|
||||
)
|
||||
em.description = (
|
||||
f"{message}\n "
|
||||
f"[{artist_title}]({url})\n"
|
||||
f"{self._draw_play(activity[0])}"
|
||||
)
|
||||
em.description = message + "\n" + self._draw_play(activity[0])
|
||||
em.set_thumbnail(url=activity[0].album_cover_url)
|
||||
elif state == "streaming":
|
||||
color = int("6441A4", 16)
|
||||
|
||||
Reference in New Issue
Block a user