Browse Source

Updating emoji cdn (#137)

Apparently the /api endpoint stopped working, so updating to use the cdn link.
pull/155/head
Justin 6 years ago
committed by Andrei Zbikowski
parent
commit
9bcc9185e7
  1. 2
      disco/types/guild.py

2
disco/types/guild.py

@ -75,7 +75,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):

Loading…
Cancel
Save