Implemented resolution of domain records through NS-servers. Updated dependencies.

This commit is contained in:
Revertron
2022-04-01 13:03:32 +02:00
parent fe43117a03
commit 594dabcab8
5 changed files with 160 additions and 70 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ function refreshRecordsList() {
var data = value.addr;
if (value.type == "MX") {
data = value.priority + " " + value.host;
} else if (value.type == "CNAME") {
} else if (value.type == "CNAME" || value.type == "NS") {
data = value.host;
} else if (value.type == "TXT") {
data = value.data;