From 69d833b945420b65e37f5742ee4dbbc39b769d85 Mon Sep 17 00:00:00 2001 From: Shreyas Zare Date: Sat, 18 Jan 2025 13:12:35 +0530 Subject: [PATCH] logs.js: updated code to support new changes for IQueryLogs. --- DnsServerCore/www/js/logs.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/DnsServerCore/www/js/logs.js b/DnsServerCore/www/js/logs.js index 30ce2053..0c0bfd3d 100644 --- a/DnsServerCore/www/js/logs.js +++ b/DnsServerCore/www/js/logs.js @@ -28,7 +28,7 @@ $(function () { for (var i = 0; i < appsList.length; i++) { if (appsList[i].name == appName) { for (var j = 0; j < appsList[i].dnsApps.length; j++) { - if (appsList[i].dnsApps[j].isQueryLogger) + if (appsList[i].dnsApps[j].isQueryLogs) optClassPaths += ""; } @@ -212,7 +212,7 @@ function refreshQueryLogsTab(doQueryLogs) { for (var i = 0; i < apps.length; i++) { for (var j = 0; j < apps[i].dnsApps.length; j++) { - if (apps[i].dnsApps[j].isQueryLogger) { + if (apps[i].dnsApps[j].isQueryLogs) { optApps += ""; if (currentAppName == null) @@ -226,7 +226,7 @@ function refreshQueryLogsTab(doQueryLogs) { for (var i = 0; i < apps.length; i++) { if (apps[i].name == currentAppName) { for (var j = 0; j < apps[i].dnsApps.length; j++) { - if (apps[i].dnsApps[j].isQueryLogger) + if (apps[i].dnsApps[j].isQueryLogs) optClassPaths += ""; }