diff options
| author | Khazhismel <[email protected]> | 2016-08-04 00:54:18 -0700 |
|---|---|---|
| committer | Khazhismel <[email protected]> | 2016-08-06 16:54:07 -0700 |
| commit | 6344504dfce8036e0c126aeac0a9f2865b99f0e3 (patch) | |
| tree | 66dfb338b76b2f9ea0a85f371eddd55a2f6b97ed | |
| parent | [commands] Add missing inspect import in converter.py (diff) | |
| download | discord.py-6344504dfce8036e0c126aeac0a9f2865b99f0e3.tar.xz discord.py-6344504dfce8036e0c126aeac0a9f2865b99f0e3.zip | |
Emoji.url uses api url.
| -rw-r--r-- | discord/emoji.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/emoji.py b/discord/emoji.py index 62d5d196..82384aa5 100644 --- a/discord/emoji.py +++ b/discord/emoji.py @@ -104,4 +104,4 @@ class Emoji(Hashable): @property def url(self): """Returns a URL version of the emoji.""" - return "https://discordcdn.com/emojis/{0.id}.png".format(self) + return "https://discordapp.com/api/emojis/{0.id}.png".format(self) |