Also check that the TLD actually exists (#84)
This commit is contained in:
@@ -67,7 +67,7 @@ function pathToDomain(path) {
|
||||
continue;
|
||||
}
|
||||
var t = TldJS.parse(parts[key]);
|
||||
if (t.isValid && t.domain !== null) {
|
||||
if (t.isValid && t.tldExists && t.domain !== null) {
|
||||
return t.hostname;
|
||||
}
|
||||
}
|
||||
|
@@ -44,7 +44,7 @@ function pathToDomain(path) {
|
||||
continue;
|
||||
}
|
||||
var t = TldJS.parse(parts[key]);
|
||||
if (t.isValid && t.domain !== null) {
|
||||
if (t.isValid && t.tldExists && t.domain !== null) {
|
||||
return t.hostname;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user