Browse Source

Return png instead of webp when getting avatar image URL

WebP images have a spotty reputation on iOS with rendering.
Changing this to a PNG lets the avatar URL display correctly on iOS.
pull/148/head
One-Nub 6 years ago
committed by GitHub
parent
commit
30b6c61b6e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      disco/types/user.py

2
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):

Loading…
Cancel
Save