mirror of
https://github.com/friendica/friendica
synced 2025-04-25 09:10:11 +00:00
separate poll_interval from delivery_interval - default is the same.
This commit is contained in:
parent
c7f3e626d0
commit
e8b9b8a403
3 changed files with 7 additions and 1 deletions
|
@ -126,7 +126,9 @@ function poller_run($argv, $argc){
|
|||
$force = true;
|
||||
}
|
||||
|
||||
$interval = ((get_config('system','delivery_interval') === false) ? 3 : intval(get_config('system','delivery_interval')));
|
||||
$interval = intval(get_config('system','poll_interval'));
|
||||
if(! $interval)
|
||||
$interval = ((get_config('system','delivery_interval') === false) ? 3 : intval(get_config('system','delivery_interval')));
|
||||
|
||||
$sql_extra = (($manual_id) ? " AND `id` = $manual_id " : "");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue