We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f344c40 commit 0d78f02Copy full SHA for 0d78f02
interactions/models/discord/emoji.py
@@ -209,7 +209,7 @@ async def delete(self, reason: Optional[str] = None) -> None:
209
@property
210
def url(self) -> str:
211
"""CDN url for the emoji."""
212
- return f"https://cdn.discordapp.net/emojis/{self.id}.{'gif' if self.animated else 'png'}"
+ return f"https://cdn.discordapp.com/emojis/{self.id}.{'gif' if self.animated else 'png'}"
213
214
215
def process_emoji_req_format(emoji: Optional[Union[PartialEmoji, dict, str]]) -> Optional[str]:
0 commit comments