mirror of
https://github.com/friendica/friendica
synced 2024-11-18 21:43:40 +00:00
Avoid a notice
This commit is contained in:
parent
c364a77d63
commit
cf569425c6
1 changed files with 1 additions and 1 deletions
|
@ -569,7 +569,7 @@ class Notifier
|
|||
private static function skipDFRN($contact, $item, $cmd)
|
||||
{
|
||||
// Use DFRN if we are on the same site
|
||||
if (Contact::isLocal($contact['url'])) {
|
||||
if (!empty($contact['url']) && Contact::isLocal($contact['url'])) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue