diff options
author | friendica <info@friendica.com> | 2014-08-28 22:42:19 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-08-28 22:42:19 -0700 |
commit | 00004e1a12c74eb600919a3fe37c8f2c253a552f (patch) | |
tree | 58f43005fc52b14223f0e5053a62e356241829cf /include/queue.php | |
parent | 0825ec81c130621bdaccba3aa1f627b08c91128e (diff) | |
download | volse-hubzilla-00004e1a12c74eb600919a3fe37c8f2c253a552f.tar.gz volse-hubzilla-00004e1a12c74eb600919a3fe37c8f2c253a552f.tar.bz2 volse-hubzilla-00004e1a12c74eb600919a3fe37c8f2c253a552f.zip |
the queue driver is universal now - we don't need to filter it.
Diffstat (limited to 'include/queue.php')
-rw-r--r-- | include/queue.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/queue.php b/include/queue.php index 378cc7816..c1b891f3c 100644 --- a/include/queue.php +++ b/include/queue.php @@ -38,7 +38,7 @@ function queue_run($argv, $argc){ // The zot driver will deliver everything destined for a single hub once contact is made (*if* contact is made). // Other drivers will have to do something different here and may need their own query. - $r = q("SELECT * FROM outq WHERE outq_delivered = 0 and (( outq_created > UTC_TIMESTAMP() - INTERVAL 12 HOUR and outq_updated < UTC_TIMESTAMP() - INTERVAL 15 MINUTE ) OR ( outq_updated < UTC_TIMESTAMP() - INTERVAL 1 HOUR )) and outq_driver in ('','zot') group by outq_posturl"); + $r = q("SELECT * FROM outq WHERE outq_delivered = 0 and (( outq_created > UTC_TIMESTAMP() - INTERVAL 12 HOUR and outq_updated < UTC_TIMESTAMP() - INTERVAL 15 MINUTE ) OR ( outq_updated < UTC_TIMESTAMP() - INTERVAL 1 HOUR )) group by outq_posturl"); } if(! $r) return; |