diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-11-25 12:11:34 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-11-25 12:11:34 +0100 |
commit | 4bffa49add9b02e72ba855ee08aae5fed28368e0 (patch) | |
tree | d618eb5c692c47dae532bebeea19bd4fcbe92cf0 /Zotlabs | |
parent | 4b2bd871b765e0287f329ad398a15f20cb6a6425 (diff) | |
parent | fe37b037575a3de5c60c2ccd3d4e1f6bc24fce37 (diff) | |
download | volse-hubzilla-4bffa49add9b02e72ba855ee08aae5fed28368e0.tar.gz volse-hubzilla-4bffa49add9b02e72ba855ee08aae5fed28368e0.tar.bz2 volse-hubzilla-4bffa49add9b02e72ba855ee08aae5fed28368e0.zip |
Merge remote-tracking branch 'mike/master' into dev
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; } |