forked from friendica/friendica-addons
Merge pull request #1058 from annando/notice
Libravatar: Fixes a problem when a DNS request failed
This commit is contained in:
commit
16588c41f6
|
@ -413,10 +413,10 @@ class Services_Libravatar
|
||||||
|
|
||||||
// Lets try get us some records based on the choice of subdomain
|
// Lets try get us some records based on the choice of subdomain
|
||||||
// and the domain we had passed in.
|
// and the domain we had passed in.
|
||||||
$srv = dns_get_record($subdomain . $domain, DNS_SRV);
|
$srv = @dns_get_record($subdomain . $domain, DNS_SRV);
|
||||||
|
|
||||||
// Did we get anything? No?
|
// Did we get anything? No?
|
||||||
if (count($srv) == 0) {
|
if (empty($srv)) {
|
||||||
// Then let's try Libravatar.org.
|
// Then let's try Libravatar.org.
|
||||||
return $fallback . 'libravatar.org';
|
return $fallback . 'libravatar.org';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue