mirror of
https://github.com/friendica/friendica
synced 2024-11-09 16:22:56 +00:00
allow hosts to be validated even if ipv6 fails
This commit is contained in:
parent
2b8126b780
commit
1550ce2764
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ class HttpClient implements ICanSendHttpRequests
|
|||
throw new \InvalidArgumentException('Unable to retrieve the host in URL: ' . $url);
|
||||
}
|
||||
|
||||
if(!filter_var($host, FILTER_VALIDATE_IP) && !@dns_get_record($host . '.', DNS_A + DNS_AAAA)) {
|
||||
if(!filter_var($host, FILTER_VALIDATE_IP) && !@dns_get_record($host . '.', DNS_A) && !@dns_get_record($host . '.', DNS_AAAA)) {
|
||||
$this->logger->debug('URL cannot be resolved.', ['url' => $url]);
|
||||
$this->profiler->stopRecording();
|
||||
return CurlResult::createErrorCurl($this->logger, $url);
|
||||
|
|
Loading…
Reference in a new issue