summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-adblock/luasrc/view/adblock/runtime.htm
diff options
context:
space:
mode:
authorDirk Brenken <dev@brenken.org>2018-12-19 17:33:29 +0100
committerDirk Brenken <dev@brenken.org>2018-12-20 08:45:35 +0100
commit87ec92d1ed7cf94b1b17248728e59770c242570c (patch)
tree752f2b31000db49ddd69abe7f1ae7f55e07213b9 /applications/luci-app-adblock/luasrc/view/adblock/runtime.htm
parentefb4d7c40a058d7191bc8ac0074aeccb7774365b (diff)
luci-app-adblock: sync with release 3.6.0
* add adblock dns query reporting via tcpdump (see readme for details) * fix tld compression on low memory systems (< 64 MB) * fix various small issues Signed-off-by: Dirk Brenken <dev@brenken.org>
Diffstat (limited to 'applications/luci-app-adblock/luasrc/view/adblock/runtime.htm')
-rw-r--r--applications/luci-app-adblock/luasrc/view/adblock/runtime.htm4
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/luci-app-adblock/luasrc/view/adblock/runtime.htm b/applications/luci-app-adblock/luasrc/view/adblock/runtime.htm
index ee20133d5a..0b5c748571 100644
--- a/applications/luci-app-adblock/luasrc/view/adblock/runtime.htm
+++ b/applications/luci-app-adblock/luasrc/view/adblock/runtime.htm
@@ -112,7 +112,7 @@ This is free software, licensed under the Apache License, Version 2.0
document.getElementById("value_6").innerHTML = "-";
}
- XHR.get('<%=luci.dispatcher.build_url("admin", "services", "adblock", "status")%>', null,
+ XHR.get('<%=luci.dispatcher.build_url("admin", "services", "adblock", "status_update")%>', null,
function(x, json_info)
{
if (!x || !json_info || !json_info.data)
@@ -123,7 +123,7 @@ This is free software, licensed under the Apache License, Version 2.0
status_update(json_info);
});
- XHR.poll(5, '<%=luci.dispatcher.build_url("admin", "services", "adblock", "status")%>', null,
+ XHR.poll(5, '<%=luci.dispatcher.build_url("admin", "services", "adblock", "status_update")%>', null,
function(x, json_info)
{
if (!x || !json_info || !json_info.data)