diff options
-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; |