Browse Source

Updating emoji cdn (#137)

Apparently the /api endpoint stopped working, so updating to use the cdn link.
pull/141/head
Justin 6 years ago
committed by Andrei
parent
commit
405488c728
No known key found for this signature in database GPG Key ID: 4D2A02C7D500E9D9
  1. 2
      disco/types/guild.py

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

Loading…
Cancel
Save