Skip to content

Commit

Permalink
Fix: improve whois matching w/ domain checking
Browse files Browse the repository at this point in the history
  • Loading branch information
SukkaW committed Jan 5, 2025
1 parent 7538df0 commit 60aec29
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Build/validate-domain-alive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,10 +133,12 @@ async function getWhois(domain: string) {
console.log('done');
})();

// TODO: this is a workaround for https://github.com/LayeredStudio/whoiser/issues/117
const whoisNotFoundKeywordTest = createKeywordFilter([
'no match for',
'does not exist',
'not found'
'not found',
'no entries found'
]);

const domainAliveMap = new Map<string, boolean>();
Expand Down

0 comments on commit 60aec29

Please sign in to comment.