diff options
Diffstat (limited to 'code/utils/source_helpers/spotify/song.py')
-rw-r--r-- | code/utils/source_helpers/spotify/song.py | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/code/utils/source_helpers/spotify/song.py b/code/utils/source_helpers/spotify/song.py index 258b652..b0c7379 100644 --- a/code/utils/source_helpers/spotify/song.py +++ b/code/utils/source_helpers/spotify/song.py @@ -4,7 +4,7 @@ import requests from typing import Tuple, Optional from requests.exceptions import JSONDecodeError -from utils.config import BOT_COLOR, LOG +from utils.config import create_embed, LOG async def load( @@ -25,13 +25,12 @@ async def load( ) if response.status_code == 404: - embed = discord.Embed( + embed = create_embed( title="Song Not Found", description=( "The song could not be found as the provided link is" " invalid. Please try again." ), - color=BOT_COLOR, ) return None, embed @@ -55,14 +54,10 @@ async def load( LOG.error("Failed making request to Spotify API") return None, None - embed = discord.Embed( + embed = create_embed( title="Song Queued", description=f"**{name}** by **{artist}**\n\nQueued by {user.mention}", - color=BOT_COLOR, - ) - embed.set_thumbnail(url=artwork_url) - embed.set_footer( - text=datetime.datetime.utcnow().strftime("%Y-%m-%d %H:%M:%S") + " UTC" + thumbnail=artwork_url, ) return song, embed |