1
0
forked from lolcat/4get

bugfix trim

This commit is contained in:
cynic
2024-10-11 17:29:47 -04:00
parent 077e9391f2
commit 93b1aeedaa

View File

@@ -26,7 +26,7 @@ function check_asn($ip, $asns, $whois_server, $port){
$response = explode(" | ", $response[1]);
foreach ($asns as $asn){
if ($asn == $response[0]){
if ($asn == trim($response[0])){
return true;
}
}