aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Daemon/Notifier.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-09-13 19:20:16 -0700
committerzotlabs <mike@macgirvin.com>2017-09-13 19:20:16 -0700
commit13788af90838d66b1c701f935862a37fcc7262f4 (patch)
tree0fb773c378f1314d379dcc3763d50e5a87fac21b /Zotlabs/Daemon/Notifier.php
parent0e6d84e20731f173e489fe0d54b43c01266c0391 (diff)
downloadvolse-hubzilla-13788af90838d66b1c701f935862a37fcc7262f4.tar.gz
volse-hubzilla-13788af90838d66b1c701f935862a37fcc7262f4.tar.bz2
volse-hubzilla-13788af90838d66b1c701f935862a37fcc7262f4.zip
Zot6: some things that need to be done ahead of time so we can turbocharge the delivery engine and split off site records from channel records.
Diffstat (limited to 'Zotlabs/Daemon/Notifier.php')
-rw-r--r--Zotlabs/Daemon/Notifier.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Daemon/Notifier.php b/Zotlabs/Daemon/Notifier.php
index e8cd4dac8..0e8c99572 100644
--- a/Zotlabs/Daemon/Notifier.php
+++ b/Zotlabs/Daemon/Notifier.php
@@ -492,7 +492,7 @@ class Notifier {
// Now we have collected recipients (except for external mentions, FIXME)
// Let's reduce this to a set of hubs; checking that the site is not dead.
- $r = q("select hubloc.*, site.site_crypto from hubloc left join site on site_url = hubloc_url where hubloc_hash in (" . implode(',',$recipients) . ")
+ $r = q("select hubloc.*, site.site_crypto, site.site_flags from hubloc left join site on site_url = hubloc_url where hubloc_hash in (" . implode(',',$recipients) . ")
and hubloc_error = 0 and hubloc_deleted = 0 and ( site_dead = 0 OR site_dead is null ) "
);