Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
It is required to run `;roleupdate now` to regenerate the cache
  • Loading branch information
krofna authored Apr 6, 2021
1 parent 73ecd10 commit a64faa1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tle/cogs/duel.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion tle/cogs/handles.py
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down

0 comments on commit a64faa1

Please sign in to comment.