From e78bec874908792fd9cc3f67a809283d7d0a8c7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Fri, 19 Jun 2026 11:13:09 +0400 Subject: [PATCH] fix: String(c).toLowerCase() (v1.0.65) --- index.cfm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.cfm b/index.cfm index f1befb5..d11b99b 100644 --- a/index.cfm +++ b/index.cfm @@ -61,7 +61,7 @@
Nubes - Сверка договоров — LLM v1.0.64 — Lucee + Сверка договоров — LLM v1.0.65 — Lucee
@@ -332,7 +332,7 @@ async function refreshSupps() { if (data.OK && data.ROWS) { data.ROWS.forEach(function(r) { var supp = {}; - data.COLUMNS.forEach(function(c, ci) { supp[c.toLowerCase()] = r[c]; }); + data.COLUMNS.forEach(function(c, ci) { supp[String(c).toLowerCase()] = r[c]; }); console.log('refreshSupps: supp=', supp); for (var i = 0; i < fileQueue.length; i++) { if (fileQueue[i].doc_id === supp.document_id) {