1
0

fix: Úklid
All checks were successful
Remote Deploy / deploy (push) Successful in 3s

This commit is contained in:
2025-09-04 08:28:47 +02:00
parent f987a78dc2
commit 5781bc1f8a

View File

@@ -70,7 +70,8 @@ export default async function parseThisShit(downloadedFilePath) {
let d = true;
try {
if (currentSheet[key]["w"].startsWith("úklid") || currentSheet[key]["w"].trim().length == 0) {
const regex = /^úklid\s+\d+\s+[A-Za-z]{2}$/;
if (regex.test(currentSheet[key]["w"]) || currentSheet[key]["w"].trim().length == 0) {
d = false;
}
} catch {}