X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fqueue_fn.php;h=8840668112300dbb4d96d62ebd63e7047e15a815;hb=99f0c01cddeb14bf4c7e3e42134c3c77903cf1ca;hp=d7d3279133c7784d165adfc1bd89af805ee7e005;hpb=1c82ad073463097ba7e3918be7fbc0863789ee7c;p=friendica.git diff --git a/include/queue_fn.php b/include/queue_fn.php index d7d3279133..8840668112 100644 --- a/include/queue_fn.php +++ b/include/queue_fn.php @@ -42,30 +42,31 @@ function was_recently_delayed($cid) { $was_delayed = !dbm::is_result($r); } - return $was_delayed;; + return $was_delayed; } function add_to_queue($cid,$network,$msg,$batch = false) { $max_queue = get_config('system','max_contact_queue'); - if($max_queue < 1) + if ($max_queue < 1) { $max_queue = 500; + } $batch_queue = get_config('system','max_batch_queue'); - if($batch_queue < 1) + if ($batch_queue < 1) { $batch_queue = 1000; + } $r = q("SELECT COUNT(*) AS `total` FROM `queue` INNER JOIN `contact` ON `queue`.`cid` = `contact`.`id` WHERE `queue`.`cid` = %d AND `contact`.`self` = 0 ", intval($cid) ); if (dbm::is_result($r)) { - if($batch && ($r[0]['total'] > $batch_queue)) { + if ($batch && ($r[0]['total'] > $batch_queue)) { logger('add_to_queue: too many queued items for batch server ' . $cid . ' - discarding message'); return; - } - elseif((! $batch) && ($r[0]['total'] > $max_queue)) { + } elseif ((! $batch) && ($r[0]['total'] > $max_queue)) { logger('add_to_queue: too many queued items for contact ' . $cid . ' - discarding message'); return; }