From 30b6c61b6e20b0d9663457ccf36af18a67bc061c Mon Sep 17 00:00:00 2001 From: One-Nub <38899321+One-Nub@users.noreply.github.com> Date: Sat, 29 Jun 2019 16:12:40 -0500 Subject: [PATCH] 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. --- disco/types/user.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):