diff --git a/disco/types/user.py b/disco/types/user.py index 63e9542..bd1540d 100644 --- a/disco/types/user.py +++ b/disco/types/user.py @@ -30,7 +30,7 @@ class User(SlottedModel, with_equality('id'), with_hash('id')): if self.avatar.startswith('a_'): return 'https://cdn.discordapp.com/avatars/{}/{}.gif?size={}'.format(self.id, self.avatar, size) else: - return 'https://cdn.discordapp.com/avatars/{}/{}.webp?size={}'.format(self.id, self.avatar, size) + return 'https://cdn.discordapp.com/avatars/{}/{}.png?size={}'.format(self.id, self.avatar, size) @property def default_avatar(self):