diff options
author | Mario <mario@mariovavti.com> | 2021-05-29 06:20:28 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-05-29 06:20:28 +0000 |
commit | 3d2b923102726d91508aa03edd0459948af704c6 (patch) | |
tree | fb3a12e63504ddb3b40adcf98cbb844321f387b2 /Zotlabs/Daemon/Notifier.php | |
parent | 43c941d3704196bdcc82ff9fceeb17de5d905707 (diff) | |
download | volse-hubzilla-3d2b923102726d91508aa03edd0459948af704c6.tar.gz volse-hubzilla-3d2b923102726d91508aa03edd0459948af704c6.tar.bz2 volse-hubzilla-3d2b923102726d91508aa03edd0459948af704c6.zip |
notifier fixes
Diffstat (limited to 'Zotlabs/Daemon/Notifier.php')
-rw-r--r-- | Zotlabs/Daemon/Notifier.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Zotlabs/Daemon/Notifier.php b/Zotlabs/Daemon/Notifier.php index 28948ec48..0ae887932 100644 --- a/Zotlabs/Daemon/Notifier.php +++ b/Zotlabs/Daemon/Notifier.php @@ -115,7 +115,7 @@ class Notifier { ); if ($r) { foreach ($r as $rr) { - $recipients[] = $rr['abook_xchan']; + self::$recipients[] = $rr['abook_xchan']; } } self::$private = false; @@ -153,8 +153,8 @@ class Notifier { if ($perm_update['success']) { if ($perm_update['deliveries']) { - $deliveries[] = $perm_update['deliveries']; - do_delivery($deliveries); + self::$deliveries[] = $perm_update['deliveries']; + do_delivery(self::$deliveries); } return; } @@ -465,7 +465,7 @@ class Notifier { call_hooks('notifier_process', $narr); if ($narr['queued']) { foreach ($narr['queued'] as $pq) - $deliveries[] = $pq; + self::$deliveries[] = $pq; } // notifier_process can alter the recipient list |