diff options
author | friendica <info@friendica.com> | 2015-01-20 15:35:42 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-01-20 15:35:42 -0800 |
commit | 6f11f20992c88ff48a55929e94d9003fcc437062 (patch) | |
tree | 8eecb1327151a63ac6cd0421c56e56bb18009164 /include/notifier.php | |
parent | 70fb47248b6579beabc81287750bc18aab2a7ddd (diff) | |
download | volse-hubzilla-6f11f20992c88ff48a55929e94d9003fcc437062.tar.gz volse-hubzilla-6f11f20992c88ff48a55929e94d9003fcc437062.tar.bz2 volse-hubzilla-6f11f20992c88ff48a55929e94d9003fcc437062.zip |
first cut at unpacking bitfields in hubloc, fixed hubloc_error and hubloc_deleted
Diffstat (limited to 'include/notifier.php')
-rw-r--r-- | include/notifier.php | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/include/notifier.php b/include/notifier.php index 06ef7bc94..0bdc71261 100644 --- a/include/notifier.php +++ b/include/notifier.php @@ -497,11 +497,8 @@ function notifier_run($argv, $argc){ where hubloc_hash in (" . implode(',',$recipients) . ") order by hubloc_connected desc limit 1"); } else { - $r = q("select hubloc_guid, hubloc_url, hubloc_sitekey, hubloc_network, hubloc_flags, hubloc_callback, hubloc_host from hubloc - where hubloc_hash in (" . implode(',',$recipients) . ") and not (hubloc_flags & %d) > 0 and not (hubloc_status & %d) > 0", - intval(HUBLOC_FLAGS_DELETED), - intval(HUBLOC_OFFLINE) - ); + $r = q("select * from hubloc where hubloc_hash in (" . implode(',',$recipients) . ") + and hubloc_error = 0 and hubloc_deleted = 0"); } if(! $r) { |