diff options
author | friendica <info@friendica.com> | 2012-06-14 17:27:07 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-06-14 17:27:07 -0700 |
commit | 267681844d81364afce37c86f92b803c3d8e4c48 (patch) | |
tree | 43037f2a5c59e16836841223b5cc2dec85510673 /include/onepoll.php | |
parent | be090cc8513504edcfaf368915e45308711f7e7c (diff) | |
download | volse-hubzilla-267681844d81364afce37c86f92b803c3d8e4c48.tar.gz volse-hubzilla-267681844d81364afce37c86f92b803c3d8e4c48.tar.bz2 volse-hubzilla-267681844d81364afce37c86f92b803c3d8e4c48.zip |
poll even if contact hasn't responded recently, so we can update the termination status
Diffstat (limited to 'include/onepoll.php')
-rw-r--r-- | include/onepoll.php | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/onepoll.php b/include/onepoll.php index 447881ab7..804a166c8 100644 --- a/include/onepoll.php +++ b/include/onepoll.php @@ -54,9 +54,7 @@ function onepoll_run($argv, $argc){ logger('onepoll: no contact'); return; } - - if(was_recently_delayed($contact_id)) - return; + $d = datetime_convert(); @@ -87,7 +85,7 @@ function onepoll_run($argv, $argc){ } $contact = $contacts[0]; - + logger('onepoll: ' . $contact['id'] . ' ' . $contact['name'], LOGGER_DEBUG); $xml = false; |