diff --git a/tle/cogs/duel.py b/tle/cogs/duel.py index 415bcefb..61aef6d2 100644 --- a/tle/cogs/duel.py +++ b/tle/cogs/duel.py @@ -385,7 +385,7 @@ def duel_to_string(duel): embed.add_field(name='Slowest win', value=duel_to_string(wins[-1]), inline=False) - embed.set_thumbnail(url=f'https:{user.titlePhoto}') + embed.set_thumbnail(url=f'{user.titlePhoto}') await ctx.send(embed=embed) def _paginate_duels(self, data, message, guild_id, show_id): diff --git a/tle/cogs/handles.py b/tle/cogs/handles.py index 9b3c8f24..e97671f8 100644 --- a/tle/cogs/handles.py +++ b/tle/cogs/handles.py @@ -222,7 +222,7 @@ def _make_profile_embed(member, user, *, mode): embed = discord.Embed(description=desc, color=user.rank.color_embed) embed.add_field(name='Rating', value=user.rating, inline=True) embed.add_field(name='Rank', value=user.rank.title, inline=True) - embed.set_thumbnail(url=f'https:{user.titlePhoto}') + embed.set_thumbnail(url=f'{user.titlePhoto}') return embed