aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--discord/emoji.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/emoji.py b/discord/emoji.py
index a959bea8..05f02ecb 100644
--- a/discord/emoji.py
+++ b/discord/emoji.py
@@ -171,7 +171,7 @@ class Emoji(Hashable):
@property
def url(self):
"""Returns a URL version of the emoji."""
- return "https://discordapp.com/api/emojis/{0.id}.png".format(self)
+ return "https://cdn.discordapp.com/emojis/{0.id}.png".format(self)
@asyncio.coroutine