diff options
author | Mario <mario@mariovavti.com> | 2017-11-25 14:34:34 +0100 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2017-11-25 14:34:34 +0100 |
commit | 55868ad02d48f59bf57b7045022c6ed1327dda44 (patch) | |
tree | ff5a004add923d2608e90871c2ad37af2b42513a /Zotlabs | |
parent | 014b629928b19dec4bfa2f12f961fd4048d71d19 (diff) | |
parent | 4bffa49add9b02e72ba855ee08aae5fed28368e0 (diff) | |
download | volse-hubzilla-55868ad02d48f59bf57b7045022c6ed1327dda44.tar.gz volse-hubzilla-55868ad02d48f59bf57b7045022c6ed1327dda44.tar.bz2 volse-hubzilla-55868ad02d48f59bf57b7045022c6ed1327dda44.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla 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; } |