diff options
author | Mario Vavti <mario@mariovavti.com> | 2023-01-02 20:38:56 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2023-01-02 20:38:56 +0100 |
commit | 0e71bfe2224b8fc54a58aff80894e1f22294bd6e (patch) | |
tree | 58b5c3079746452592891f7e64d2e52f27007a95 /Zotlabs/Daemon | |
parent | 37b539eaa56f3f0c6a9278ce31d82d2e4c048e88 (diff) | |
download | volse-hubzilla-0e71bfe2224b8fc54a58aff80894e1f22294bd6e.tar.gz volse-hubzilla-0e71bfe2224b8fc54a58aff80894e1f22294bd6e.tar.bz2 volse-hubzilla-0e71bfe2224b8fc54a58aff80894e1f22294bd6e.zip |
add sys channel to receiveres for public items
Diffstat (limited to 'Zotlabs/Daemon')
-rw-r--r-- | Zotlabs/Daemon/Notifier.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Zotlabs/Daemon/Notifier.php b/Zotlabs/Daemon/Notifier.php index bfccb4099..f51dfab28 100644 --- a/Zotlabs/Daemon/Notifier.php +++ b/Zotlabs/Daemon/Notifier.php @@ -509,6 +509,7 @@ class Notifier { // public posts won't make it to the local public stream unless there's a recipient on this site. // This code block sees if it's a public post and localhost is missing, and if so adds an entry for the local sys channel to the $hubs list + /* sys channel is now added in collect recipients if (!self::$private) { $found_localhost = false; if ($hubs) { @@ -529,6 +530,7 @@ class Notifier { } } } + */ if (!$hubs) { logger('notifier: no hubs', LOGGER_NORMAL, LOG_NOTICE); |