From 0af1c22936558cc3cfbb0090db84ebe23a18d293 Mon Sep 17 00:00:00 2001 From: Justin <14909116+ThatGuyJustin@users.noreply.github.com> Date: Sun, 5 May 2019 00:46:30 -0400 Subject: [PATCH] Update emoji url too --- disco/types/guild.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/disco/types/guild.py b/disco/types/guild.py index 041c09b..c68b4e1 100644 --- a/disco/types/guild.py +++ b/disco/types/guild.py @@ -72,7 +72,7 @@ class GuildEmoji(Emoji): @property def url(self): - return 'https://discordapp.com/api/emojis/{}.{}'.format(self.id, 'gif' if self.animated else 'png') + return 'https://cdn.discordapp.com/emojis/{}.{}'.format(self.id, 'gif' if self.animated else 'png') @cached_property def guild(self):