Libravatar: Fixes a problem when a DNS request failed

This commit is contained in:
Michael 2020-12-16 19:44:54 +00:00
parent c303e20254
commit a3a0da2750
1 changed files with 2 additions and 2 deletions

View File

@ -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';
} }