Browse Source

fix: wrong remove of tld list and icp list

master
Dnomd343 3 years ago
parent
commit
d97374145c
  1. 2
      src/main.php

2
src/main.php

@ -40,7 +40,7 @@ foreach ($tlds as $index => $tld) {
die('error -> fail to load page');
}
$info = $iana->getTldInfo('.' . $tld, $html_content);
$tldInfo[$tld] = $info;
$tldInfo['.' . $tld] = $info;
echo PHP_EOL;
}

Loading…
Cancel
Save