fix vanity NS check

Bu işleme şunda yer alıyor:
AJ ONeal 2017-11-02 13:08:23 -06:00
ebeveyn 7a201e4d8a
işleme f3105971a4

Dosyayı Görüntüle

@ -407,7 +407,7 @@ module.exports.query = function (input, query, cb) {
console.log("It's NS");
// If it's a vanity NS, it's not a valid NS for lookup
if (-1 !== db.primaryNameservers.indexOf(r.data.toLowerCase())) {
if (-1 === db.primaryNameservers.indexOf(r.data.toLowerCase())) {
console.log("It's a vanity NS");
return false;
}