From 5c6fe0da00bd1150b3a480f5d9a0f1cc48f85c43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9CNaeel=E2=80=9D?= Date: Tue, 23 Jun 2026 08:05:17 +0400 Subject: [PATCH] =?UTF-8?q?v1.0.119:=20fix=20ZIP=20=E2=80=94=20use=20absol?= =?UTF-8?q?ute=20UNZIP=5FURL=20(was=20relative=20path=20=E2=86=92=20404)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.cfm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/index.cfm b/index.cfm index 5791e9d..424b1d6 100644 --- a/index.cfm +++ b/index.cfm @@ -75,7 +75,7 @@
Nubes - Сверка договоров — LLM AI-driven Event Sourcing v1.0.118 — Lucee + Сверка договоров — LLM AI-driven Event Sourcing v1.0.119 — Lucee
@@ -176,6 +176,7 @@ lucide.createIcons(); var UPLOAD_URL = 'https://contracts.kube5s.ru/lucee/upload.cfm'; var CONVERT_URL = 'https://contracts.kube5s.ru/convert-doc'; +var UNZIP_URL = 'https://contracts.kube5s.ru/unzip-upload'; var SITE_URL = ''; // same origin for api calls var fileInput = document.getElementById('fileInput'); @@ -258,7 +259,7 @@ fileInput.addEventListener('change', async function() { renderTable(); try { - var zipResp = await fetch('/unzip-upload', { + var zipResp = await fetch(UNZIP_URL, { method: 'POST', body: f, headers: {'Content-Type': 'application/zip'}