From 6fd93ebd767cd3e45a5e86fdb96fc02f4ecd8ed6 Mon Sep 17 00:00:00 2001 From: Luke Date: Wed, 19 Jun 2019 04:01:33 +0100 Subject: [PATCH] Fix guild Icons as icons --- disco/types/guild.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/disco/types/guild.py b/disco/types/guild.py index f49576a..d938a13 100644 --- a/disco/types/guild.py +++ b/disco/types/guild.py @@ -528,9 +528,9 @@ class Guild(SlottedModel, Permissible): if fmt is not None: return 'https://cdn.discordapp.com/icons/{}/{}.{}?size={}'.format(self.id, self.icon, fmt, size) if self.icon.startswith('a_'): - return 'https://cdn.discordapp.com/avatars/{}/{}.gif?size={}'.format(self.id, self.icon, size) + return 'https://cdn.discordapp.com/icons/{}/{}.gif?size={}'.format(self.id, self.icon, size) else: - return 'https://cdn.discordapp.com/avatars/{}/{}.webp?size={}'.format(self.id, self.icon, size) + return 'https://cdn.discordapp.com/icons/{}/{}.webp?size={}'.format(self.id, self.icon, size) def get_splash_url(self, fmt='webp', size=1024): if not self.splash: