From 5360bfae9d0c4d2d2d548a11e2c1307fc1ea09ba Mon Sep 17 00:00:00 2001 From: DL6ER Date: Thu, 9 Aug 2018 18:07:40 +0200 Subject: [PATCH] Add RRNAME as reply type for TXT queries Signed-off-by: DL6ER --- scripts/pi-hole/js/queries.js | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/scripts/pi-hole/js/queries.js b/scripts/pi-hole/js/queries.js index 9071bed3..fec87d57 100644 --- a/scripts/pi-hole/js/queries.js +++ b/scripts/pi-hole/js/queries.js @@ -237,15 +237,18 @@ $(document).ready(function() { replytext = "DOMAIN"; break; case "6": - replytext = "SERVFAIL"; + replytext = "RRNAME"; break; case "7": - replytext = "REFUSED"; + replytext = "SERVFAIL"; break; case "8": - replytext = "NOTIMP"; + replytext = "REFUSED"; break; case "9": + replytext = "NOTIMP"; + break; + case "10": replytext = "upstream error"; break; default: