Respect the hyphen

This commit is contained in:
Yash Karandikar 2023-07-08 21:10:49 -05:00
parent dc4507e799
commit 87b8e557fb

View file

@ -291,7 +291,7 @@ fn irc_to_discord_processing(
static PING_RE_2 = r"(?<=\s|^)@(\w+)";
static CONTROL_CHAR_RE = r"\x1f|\x02|\x12|\x0f|\x16|\x03(?:\d{1,2}(?:,\d{1,2})?)?";
static WHITESPACE_RE = r"^\s";
static CHANNEL_RE = r"#(\w+)";
static CHANNEL_RE = r"#([\w-]+)";
static EMOJI_RE = r":(\w+):";
}