From 43a4874d4bb2f2145b7c96c14a370441dee8dce3 Mon Sep 17 00:00:00 2001 From: Dantenerosas Date: Tue, 26 Sep 2023 00:27:07 +0300 Subject: [PATCH] fix post check --- src/web/templates/index.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/web/templates/index.html b/src/web/templates/index.html index e8e5bd2..c97aa9d 100644 --- a/src/web/templates/index.html +++ b/src/web/templates/index.html @@ -112,7 +112,9 @@ document.forms.download.querySelector('.submit-spinner').classList.add('submit-spinner_hide'); }; }; - xhr2.send(link) + body = {}; + body.link = link; + xhr2.send(body) }