From 84bded08b89db982e6f0a511d0b7c0cdd906da70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Fri, 19 Jun 2026 11:08:48 +0400 Subject: [PATCH] =?UTF-8?q?fix:=20r[ci]=20=E2=86=92=20r[c]=20(ROWS=20?= =?UTF-8?q?=D1=8D=D1=82=D0=BE=20=D0=BE=D0=B1=D1=8A=D0=B5=D0=BA=D1=82=D1=8B?= =?UTF-8?q?,=20=D0=BD=D0=B5=20=D0=BC=D0=B0=D1=81=D1=81=D0=B8=D0=B2=D1=8B)?= =?UTF-8?q?=20(v1.0.64)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.cfm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.cfm b/index.cfm index c7b1831..f1befb5 100644 --- a/index.cfm +++ b/index.cfm @@ -61,7 +61,7 @@
Nubes - Сверка договоров — LLM v1.0.63 — Lucee + Сверка договоров — LLM v1.0.64 — 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[ci]; }); + data.COLUMNS.forEach(function(c, ci) { supp[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) {