Fix wrong variable name in Worker\Notifier

2022.09-rc
Hypolite Petovan 2019-03-23 00:05:47 -04:00
rodzic fab01ed0d3
commit 66df8d6bc6
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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]);
}
/**