From: Hypolite Petovan Date: Sat, 23 Mar 2019 04:05:47 +0000 (-0400) Subject: Fix wrong variable name in Worker\Notifier X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=66df8d6bc68a33173adf1a4979757984348acccb;p=friendica.git Fix wrong variable name in Worker\Notifier --- diff --git a/src/Worker/Notifier.php b/src/Worker/Notifier.php index baae33f7e0..dac3346f95 100644 --- a/src/Worker/Notifier.php +++ b/src/Worker/Notifier.php @@ -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]); } /**