fix: make forward slash escape mentions parser
This commit is contained in:
parent
97b7e873ed
commit
1b1c1c0bea
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue