Skip to content

Commit

Permalink
fix: change URL to use https instead of http
Browse files Browse the repository at this point in the history
  • Loading branch information
tylovejoy committed May 12, 2024
1 parent a7d1837 commit c687a52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/embeds.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def __init__(
title="Uh oh! Something went wrong.",
description=description,
color=discord.Color.red(),
thumbnail="http://bkan0n.com/assets/images/icons/error.png",
thumbnail="https://bkan0n.com/assets/images/icons/error.png",
)
else:
super().__init__(
Expand All @@ -75,7 +75,7 @@ def set_embed_thumbnail_maps(map_name: str, embed: discord.Embed) -> discord.Emb
The embed object with the thumbnail set to a map's image
"""
map_name = re.sub(r"[:'\s]", "", map_name).lower()
embed.set_thumbnail(url=f"http://bkan0n.com/assets/images/maps/{map_name}.png")
embed.set_thumbnail(url=f"https://bkan0n.com/assets/images/maps/{map_name}.png")
return embed


Expand Down

0 comments on commit c687a52

Please sign in to comment.