aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-05-29 06:20:28 +0000
committerMario <mario@mariovavti.com>2021-05-29 06:20:28 +0000
commit3d2b923102726d91508aa03edd0459948af704c6 (patch)
treefb3a12e63504ddb3b40adcf98cbb844321f387b2 /Zotlabs
parent43c941d3704196bdcc82ff9fceeb17de5d905707 (diff)
downloadvolse-hubzilla-3d2b923102726d91508aa03edd0459948af704c6.tar.gz
volse-hubzilla-3d2b923102726d91508aa03edd0459948af704c6.tar.bz2
volse-hubzilla-3d2b923102726d91508aa03edd0459948af704c6.zip
notifier fixes
Diffstat (limited to 'Zotlabs')
-rw-r--r--Zotlabs/Daemon/Notifier.php8
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