mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-25 05:06:44 -06:00
Fix bug
This commit is contained in:
parent
7bec5e52be
commit
e7cd3d3707
1 changed files with 4 additions and 0 deletions
|
@ -110,6 +110,8 @@ const elements = [
|
|||
for (let i = 1; i < code.length; i++) {
|
||||
const char = code[i];
|
||||
if (char == '\\') {
|
||||
str += char;
|
||||
str += code[i + 1] || '';
|
||||
i++;
|
||||
continue;
|
||||
} else if (char == begin) {
|
||||
|
@ -140,6 +142,8 @@ const elements = [
|
|||
for (let i = 1; i < code.length; i++) {
|
||||
const char = code[i];
|
||||
if (char == '\\') {
|
||||
regexp += char;
|
||||
regexp += code[i + 1] || '';
|
||||
i++;
|
||||
continue;
|
||||
} else if (char == '/') {
|
||||
|
|
Loading…
Reference in a new issue