diff options
Diffstat (limited to 'Zotlabs/Daemon/Notifier.php')
-rw-r--r-- | Zotlabs/Daemon/Notifier.php | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Zotlabs/Daemon/Notifier.php b/Zotlabs/Daemon/Notifier.php index 20134b8fe..485299187 100644 --- a/Zotlabs/Daemon/Notifier.php +++ b/Zotlabs/Daemon/Notifier.php @@ -299,7 +299,7 @@ class Notifier { return; } - if ($target_item['verb'] === ACTIVITY_SHARE) { + if (in_array($target_item['verb'], [ACTIVITY_SHARE])) { // Provide correct representation across the wire. Internally this is treated as a comment. $target_item['parent_mid'] = $target_item['thr_parent'] = $target_item['mid']; } @@ -431,6 +431,9 @@ class Notifier { return; } + hz_syslog(print_r(self::$encoded_item['type'], true)); + hz_syslog(print_r(self::$recipients, true)); + // logger('recipients: ' . print_r(self::$recipients,true), LOGGER_NORMAL, LOG_DEBUG); if (!count(self::$env_recips)) { @@ -589,7 +592,9 @@ class Notifier { foreach ($dhubs as $hub) { - logger('notifier_hub: ' . $hub['hubloc_url'], LOGGER_DEBUG); + hz_syslog('notifier_hub: ' . $hub['hubloc_url'], LOGGER_DEBUG); + hz_syslog(print_r($target_item['id'], true)); + hz_syslog(print_r($target_item['verb'], true)); if ($hub['hubloc_network'] !== 'zot6') { $narr = [ |