mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-12-23 21:03:09 +02:00
Fix bug
This commit is contained in:
parent
bfde797c17
commit
c90bf42f27
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ const elements = [
|
|||
const begin = code[0];
|
||||
let str = begin;
|
||||
let thisIsNotAString = false;
|
||||
for (i = 1; i < code.length; i++) {
|
||||
for (let i = 1; i < code.length; i++) {
|
||||
const char = code[i];
|
||||
if (char == '\\') {
|
||||
i++;
|
||||
|
|
Loading…
Reference in a new issue