Skip to content

Commit

Permalink
Update hexcode.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
Souma-Sumire committed Jan 19, 2024
1 parent 44d27f0 commit d960242
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/hexcode.vue
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ function test(text: string): Result[] {
}
}
const over = text.slice(lastIndex + i + 3, lastIndex + i + 11);
const full = text.slice(lastIndex - 1, lastIndex + 10 + i + 1);
const full = text.slice(lastIndex + 10, lastIndex + 10 + i);
result.push({ passed: over.endsWith("03>"), over, msg, full });
// break;
}
Expand Down

0 comments on commit d960242

Please sign in to comment.