fix: make forward slash escape mentions parser

This commit is contained in:
trisua 2025-06-19 16:23:33 -04:00
parent 97b7e873ed
commit 1b1c1c0bea

View file

@ -332,7 +332,7 @@ impl User {
// parse // parse
for char in input.chars() { for char in input.chars() {
if (char == '\\') && !escape { if ((char == '\\') | (char == '/')) && !escape {
escape = true; escape = true;
continue; continue;
} }