diff options
author | Mario Vavti <mario@mariovavti.com> | 2024-10-09 18:26:15 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2024-10-09 18:26:15 +0200 |
commit | 8cee16be1b774af1f2ec85d7778776e1d8b03e50 (patch) | |
tree | 721958f6afbde183c54536b2bcf0f648415e665e /Zotlabs/Daemon/Notifier.php | |
parent | 45c0091d3d5ce1aae1f4915dfd4c15865a011fe1 (diff) | |
download | volse-hubzilla-8cee16be1b774af1f2ec85d7778776e1d8b03e50.tar.gz volse-hubzilla-8cee16be1b774af1f2ec85d7778776e1d8b03e50.tar.bz2 volse-hubzilla-8cee16be1b774af1f2ec85d7778776e1d8b03e50.zip |
enable the hooks again
Diffstat (limited to 'Zotlabs/Daemon/Notifier.php')
-rw-r--r-- | Zotlabs/Daemon/Notifier.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Daemon/Notifier.php b/Zotlabs/Daemon/Notifier.php index 77ec6920d..485299187 100644 --- a/Zotlabs/Daemon/Notifier.php +++ b/Zotlabs/Daemon/Notifier.php @@ -471,7 +471,7 @@ class Notifier { 'queued' => [] ]; - //call_hooks('notifier_process', $narr); + call_hooks('notifier_process', $narr); if ($narr['queued']) { foreach ($narr['queued'] as $pq) self::$deliveries[] = $pq; @@ -616,7 +616,7 @@ class Notifier { 'queued' => [] ]; - // call_hooks('notifier_hub', $narr); + call_hooks('notifier_hub', $narr); if ($narr['queued']) { foreach ($narr['queued'] as $pq) self::$deliveries[] = $pq; |