Fix: exception when search term is not a valid regex

This commit is contained in:
Andrew Janssen 2024-11-08 09:35:08 -08:00
parent 5082a5087a
commit 8a04f30008

View File

@ -68,7 +68,13 @@
const nameSubstringMatch = process.name
.toLowerCase()
.includes(term.toLowerCase());
const nameRegexMatch = new RegExp(term, "i").test(process.name);
const nameRegexMatch = (() => {
try {
return new RegExp(term, "i").test(process.name);
} catch {
return false;
}
})();
const commandMatch = process.command
.toLowerCase()
.includes(term.toLowerCase());