From d966dd605e9d82d785f7538ae9a6a063d7688c45 Mon Sep 17 00:00:00 2001 From: remittor Date: Fri, 16 Jan 2026 17:11:37 +0300 Subject: [PATCH] luci: Fix checkbox enable_custom_d --- .../htdocs/luci-static/resources/view/zapret/service.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/luci-app-zapret/htdocs/luci-static/resources/view/zapret/service.js b/luci-app-zapret/htdocs/luci-static/resources/view/zapret/service.js index ed397cd..59b0348 100644 --- a/luci-app-zapret/htdocs/luci-static/resources/view/zapret/service.js +++ b/luci-app-zapret/htdocs/luci-static/resources/view/zapret/service.js @@ -289,7 +289,7 @@ return view.extend({ if (document.getElementById('cfg_erase_autohostlist').checked) { opt_flags += '(erase_autohostlist)'; }; - if (document.getElementById('enable_custom_d').checked) { + if (document.getElementById('cfg_enable_custom_d').checked) { opt_flags += '(enable_custom_d)'; }; //console.log('RESET: opt_flags = ' + opt_flags);