update references to codey.lol -> codey.horse [new domain]
This commit is contained in:
@@ -79,7 +79,7 @@ class LyricsPaginator(discord.ui.View):
|
||||
import urllib.parse
|
||||
encoded_artist = urllib.parse.quote(self.artist, safe='')
|
||||
encoded_song = urllib.parse.quote(self.song, safe='')
|
||||
lyrics_url = f"https://codey.lol/#{encoded_artist}/{encoded_song}"
|
||||
lyrics_url = f"https://codey.horse/#{encoded_artist}/{encoded_song}"
|
||||
|
||||
for i, page in enumerate(pages):
|
||||
embed = discord.Embed(title=f"{self.song}", color=discord.Color.blue(), url=lyrics_url)
|
||||
@@ -88,7 +88,7 @@ class LyricsPaginator(discord.ui.View):
|
||||
|
||||
# Set footer with just page info for multi-page, or no footer for single page
|
||||
if len(pages) > 1:
|
||||
embed.set_footer(text=f"Page {i + 1} of {len(pages)}", icon_url="https://codey.lol/favicon.ico")
|
||||
embed.set_footer(text=f"Page {i + 1} of {len(pages)}", icon_url="https://codey.horse/favicon.ico")
|
||||
self.embeds.append(embed)
|
||||
|
||||
# Store pagination data for persistence across bot restarts
|
||||
|
||||
Reference in New Issue
Block a user