diff options
author | friendica <info@friendica.com> | 2014-11-07 12:16:13 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-11-07 12:16:13 -0800 |
commit | 961049f5faf04edcf3dc5485e76d81460b929efb (patch) | |
tree | 857e3ef62795e7c6e08e78f18baa5d44ab6ec20b /include | |
parent | b6ae56b069a7460c1c52f10b97f7e8eba8895770 (diff) | |
download | volse-hubzilla-961049f5faf04edcf3dc5485e76d81460b929efb.tar.gz volse-hubzilla-961049f5faf04edcf3dc5485e76d81460b929efb.tar.bz2 volse-hubzilla-961049f5faf04edcf3dc5485e76d81460b929efb.zip |
revert that bit
Diffstat (limited to 'include')
-rw-r--r-- | include/poller.php | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/include/poller.php b/include/poller.php index 1734af7d9..026d84c62 100644 --- a/include/poller.php +++ b/include/poller.php @@ -263,7 +263,7 @@ function poller_run($argv, $argc){ ); - $contacts = q("SELECT abook_id, abook_flags, abook_network, abook_updated, abook_connected, abook_closeness, abook_xchan, abook_channel + $contacts = q("SELECT abook_id, abook_flags, abook_updated, abook_connected, abook_closeness, abook_xchan, abook_channel FROM abook LEFT JOIN account on abook_account = account_id where 1 $sql_extra AND (( abook_flags & %d ) OR ( abook_flags = %d )) @@ -357,12 +357,6 @@ function poller_run($argv, $argc){ if((! $update) && (! $force)) continue; - // we handled feed contacts earlier - now filter out anything else that - // doesn't require polling to keep the process count down. - - if($contact['abook_network'] !== 'zot') - continue; - proc_run('php','include/onepoll.php',$contact['abook_id']); if($interval) @time_sleep_until(microtime(true) + (float) $interval); |