mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-20 23:06:16 -04:00
Suppressed highlighting errors
This commit is contained in:
parent
cecae671d8
commit
f864a5f31e
1 changed files with 6 additions and 1 deletions
|
@ -146,7 +146,12 @@ class Chef {
|
||||||
const func = direction === "forward" ? highlights[i].f : highlights[i].b;
|
const func = direction === "forward" ? highlights[i].f : highlights[i].b;
|
||||||
|
|
||||||
if (typeof func == "function") {
|
if (typeof func == "function") {
|
||||||
pos = func(pos, highlights[i].args);
|
try {
|
||||||
|
pos = func(pos, highlights[i].args);
|
||||||
|
} catch (err) {
|
||||||
|
// Throw away highlighting errors
|
||||||
|
pos = [];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue