4
0
mirror of https://github.com/AzuraCast/AzuraCast.git synced 2024-06-14 13:16:37 +00:00

Further reduce the threshold for API checks. Grr.

This commit is contained in:
Buster Neece 2014-08-18 22:23:12 -05:00
parent 9a3a0eb9f2
commit 44e6450c32

View File

@ -11,7 +11,7 @@ class Admin_ApiController extends \PVL\Controller\Action\Admin
set_time_limit(300);
ini_set('memory_limit', '256M');
$threshold = strtotime('-3 days');
$threshold = strtotime('-1 day');
$seconds_in_threshold = time() - $threshold;
$minutes_in_threshold = round($seconds_in_threshold / 60);