diff --git a/src/utils/helpServer.ts b/src/utils/helpServer.ts index 3dbca43..11b97ee 100644 --- a/src/utils/helpServer.ts +++ b/src/utils/helpServer.ts @@ -11,7 +11,7 @@ createServer((_, res) => { for (const key in customAliasy) { const i = vsechnyKomandy.findIndex(komand => komand.name == customAliasy[key]); - if (i == -1) { log(new Error(`ičko neexistuje. hledal sem "${key}"`)); continue; } + if (i == -1) continue; (vsechnyKomandy[i].als ??= []).push(key); }