Very small fix
added \n to add more space between Artists and Album fields
This commit is contained in:
parent
027fa36266
commit
f97e45c91a
1 changed files with 6 additions and 1 deletions
7
main.py
7
main.py
|
@ -2,8 +2,11 @@ import os
|
|||
import requests
|
||||
import spotipy
|
||||
from spotipy.oauth2 import SpotifyOAuth
|
||||
import time
|
||||
from dotenv import load_dotenv
|
||||
|
||||
current_epoch = time.time()
|
||||
|
||||
# Load environment variables from .env file
|
||||
load_dotenv()
|
||||
|
||||
|
@ -51,7 +54,7 @@ if response is not None and response.get('is_playing', False):
|
|||
context_url = context['external_urls']['spotify']
|
||||
|
||||
# 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:
|
||||
description += f" | [{context_name}]({context_url})"
|
||||
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
|
||||
response = requests.post(discord_webhook_url, json=message)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue