Fix wrong variable name in Worker\Notifier

This commit is contained in:
Hypolite Petovan 2019-03-23 00:05:47 -04:00
parent fab01ed0d3
commit 66df8d6bc6
1 changed files with 1 additions and 1 deletions

View File

@ -550,7 +550,7 @@ class Notifier
*/
private static function isRemovalActivity($cmd, $owner, $network)
{
return ($cmd == Delivery::DELETION) && $owner['account_removed'] && in_array($contact['network'], [Protocol::ACTIVITYPUB, Protocol::DIASPORA]);
return ($cmd == Delivery::DELETION) && $owner['account_removed'] && in_array($network, [Protocol::ACTIVITYPUB, Protocol::DIASPORA]);
}
/**