aboutsummaryrefslogtreecommitdiff
path: root/code/utils/source_helpers/spotify/album.py
diff options
context:
space:
mode:
Diffstat (limited to 'code/utils/source_helpers/spotify/album.py')
-rw-r--r--code/utils/source_helpers/spotify/album.py13
1 files changed, 4 insertions, 9 deletions
diff --git a/code/utils/source_helpers/spotify/album.py b/code/utils/source_helpers/spotify/album.py
index cf527ed..0ebc7d5 100644
--- a/code/utils/source_helpers/spotify/album.py
+++ b/code/utils/source_helpers/spotify/album.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="Album Not Found",
description=(
"The album could not be found as the provided link is"
" invalid. Please try again."
),
- color=BOT_COLOR,
)
return None, embed
@@ -56,18 +55,14 @@ async def load(
LOG.error("Failed making request to Spotify API")
return None, None
- embed = discord.Embed(
+ embed = create_embed(
title="Album Queued",
description=(
f"**{name}** by **{artist}**\n"
f"` {num_tracks} ` tracks\n\n"
f"Queued 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 album, embed