1
0
mirror of https://github.com/StackExchange/dnscontrol.git synced 2024-05-11 05:55:12 +00:00

NS1: revert #2295 (nameserver "trailing dot" issue) (#2327)

This commit is contained in:
Tom Limoncelli
2023-05-06 11:46:07 -04:00
committed by GitHub
parent 0cad03df60
commit fede846b12

View File

@@ -85,7 +85,7 @@ func (n *nsone) GetNameservers(domain string) ([]*models.Nameserver, error) {
nservers = append(nservers, ns) nservers = append(nservers, ns)
} }
} }
return models.ToNameserversStripTD(nservers) return models.ToNameservers(nservers)
} }
// GetZoneRecords gets the records of a zone and returns them in RecordConfig format. // GetZoneRecords gets the records of a zone and returns them in RecordConfig format.