From f19a538e7fc79fbd212ef1f4663332033d04f248 Mon Sep 17 00:00:00 2001 From: Mcat12 Date: Sat, 26 Jan 2019 13:11:08 -0800 Subject: [PATCH] Clarify wording of DNSSEC Unknown status Previously, unknown DNSSEC status was marked with a question mark. FTL loads queries from the database and sets the DNSSEC status to unknown, because that information is not stored in the database: https://github.com/pi-hole/FTL/pull/461 Signed-off-by: Mcat12 --- scripts/pi-hole/js/queries.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/pi-hole/js/queries.js b/scripts/pi-hole/js/queries.js index dafa4ac3..f36e76e1 100644 --- a/scripts/pi-hole/js/queries.js +++ b/scripts/pi-hole/js/queries.js @@ -170,7 +170,7 @@ $(document).ready(function() { dnssec_status = "
ABANDONED"; break; case "5": - dnssec_status = "
?"; + dnssec_status = "
UNKNOWN"; break; default: // No DNSSEC dnssec_status = "";