Very small fix

added \n to add more space between Artists and Album fields
This commit is contained in:
rintyuu 2024-08-22 21:49:16 -07:00
parent 027fa36266
commit f97e45c91a

View file

@ -2,8 +2,11 @@ import os
import requests import requests
import spotipy import spotipy
from spotipy.oauth2 import SpotifyOAuth from spotipy.oauth2 import SpotifyOAuth
import time
from dotenv import load_dotenv from dotenv import load_dotenv
current_epoch = time.time()
# Load environment variables from .env file # Load environment variables from .env file
load_dotenv() load_dotenv()
@ -51,7 +54,7 @@ if response is not None and response.get('is_playing', False):
context_url = context['external_urls']['spotify'] context_url = context['external_urls']['spotify']
# Format the message # Format the message
description = f"**Artists**\n{artists}\n**Album**\n{album_name}\n\n[Listen on Spotify]({track_url})" description = f"**Artists**\n{artists}\n\n**Album**\n{album_name}\n\n<t:{current_epoch:.0f}:R>\n[Listen on Spotify]({track_url})"
if context_name and context_url: if context_name and context_url:
description += f" | [{context_name}]({context_url})" description += f" | [{context_name}]({context_url})"
description += f" | [visit the source](https://git.rintyuu.dev/rintyuu/discord-nowplaying)" description += f" | [visit the source](https://git.rintyuu.dev/rintyuu/discord-nowplaying)"
@ -66,6 +69,8 @@ if response is not None and response.get('is_playing', False):
] ]
} }
print(f"Current Epoch Time: {current_epoch:.0f}")
# Send the message to the Discord webhook # Send the message to the Discord webhook
response = requests.post(discord_webhook_url, json=message) response = requests.post(discord_webhook_url, json=message)