diff options
author | Mario <mario@mariovavti.com> | 2021-05-28 20:15:34 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-05-28 20:15:34 +0000 |
commit | 43c941d3704196bdcc82ff9fceeb17de5d905707 (patch) | |
tree | ef3e63e2ae9cc544c0626e28682ae84c63fb0cc7 | |
parent | e1721b8496ec61aeb5f3967abfbb88b952357dfe (diff) | |
download | volse-hubzilla-43c941d3704196bdcc82ff9fceeb17de5d905707.tar.gz volse-hubzilla-43c941d3704196bdcc82ff9fceeb17de5d905707.tar.bz2 volse-hubzilla-43c941d3704196bdcc82ff9fceeb17de5d905707.zip |
fix notifier for non-zot hublocs
-rw-r--r-- | Zotlabs/Daemon/Notifier.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Daemon/Notifier.php b/Zotlabs/Daemon/Notifier.php index 0f367103e..28948ec48 100644 --- a/Zotlabs/Daemon/Notifier.php +++ b/Zotlabs/Daemon/Notifier.php @@ -602,7 +602,7 @@ class Notifier { call_hooks('notifier_hub', $narr); if ($narr['queued']) { foreach ($narr['queued'] as $pq) - $deliveries[] = $pq; + self::$deliveries[] = $pq; } continue; |