diff options
author | zotlabs <mike@macgirvin.com> | 2017-11-25 03:01:25 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-11-25 03:01:25 -0800 |
commit | fe37b037575a3de5c60c2ccd3d4e1f6bc24fce37 (patch) | |
tree | 8d61db4f04a5806fc6e169e06cd41151cc64f3d4 /Zotlabs | |
parent | 08900b730bd39c00e399696472d904c1d5e4ef0b (diff) | |
download | volse-hubzilla-fe37b037575a3de5c60c2ccd3d4e1f6bc24fce37.tar.gz volse-hubzilla-fe37b037575a3de5c60c2ccd3d4e1f6bc24fce37.tar.bz2 volse-hubzilla-fe37b037575a3de5c60c2ccd3d4e1f6bc24fce37.zip |
blah is not author or owner
Diffstat (limited to 'Zotlabs')
-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 d0175549b..3f07d4ce0 100644 --- a/Zotlabs/Daemon/Notifier.php +++ b/Zotlabs/Daemon/Notifier.php @@ -309,7 +309,7 @@ class Notifier { if($s) $channel = $s[0]; - if($channel['channel_hash'] !== $target_item['author_xchan'] && $channel['channel_hash'] !== $target_item['owner_xchan']) { + if($channel['channel_hash'] !== $target_item['author_xchan'] && $channel['channel_hash'] !== $target_item['owner_xchan'] && ( ! intval($channel['channel_system']))) { logger("notifier: Sending channel {$channel['channel_hash']} is not owner {$target_item['owner_xchan']} or author {$target_item['author_xchan']}", LOGGER_NORMAL, LOG_WARNING); return; } |