fix: regex string was not a raw string

This commit is contained in:
Sofía Maturana 2026-05-21 16:26:30 -04:00
parent 62c2e1deca
commit 8c814890c7

View file

@ -8,7 +8,7 @@ EXT_DESCRIPTION = "View animated custom emoji as GIFs"
EXT_SOURCE = "https://git.silvertke.net/SilverTke/endcord-aemoji"
EXT_COMMAND_ASSIST = (("view_aemoji - View animated emoji", "view_aemoji"),)
EMOJI_RE = re.compile("^<:(.+):(\d+)>$")
EMOJI_RE = re.compile(r"^<:(.+):(\d+)>$")
def get_emoji_url(emoji: str) -> str | None: