mirror of
https://github.com/friendica/friendica
synced 2024-11-10 09:02:53 +00:00
remove duplicate check
This commit is contained in:
parent
ea64ec21ac
commit
8875cc7419
1 changed files with 1 additions and 1 deletions
|
@ -495,7 +495,7 @@ class Network
|
|||
if (($h) && (dns_get_record($h, DNS_A + DNS_MX) || filter_var($h, FILTER_VALIDATE_IP) )) {
|
||||
return true;
|
||||
}
|
||||
if (($h) && (dns_get_record($h, DNS_CNAME + DNS_MX) || filter_var($h, FILTER_VALIDATE_IP) )) {
|
||||
if (($h) && dns_get_record($h, DNS_CNAME + DNS_MX)) {
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue