Update call_center_active.php

This commit is contained in:
FusionPBX 2023-08-14 20:24:23 -06:00 committed by GitHub
parent b74880f28e
commit 71d2f47ca6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@
<?php
//determine refresh rate
$refresh_default = 15000; //milliseconds
$refresh_default = 1500; //milliseconds
$refresh = is_numeric($_SESSION['call_center']['refresh']['numeric']) ? $_SESSION['call_center']['refresh']['numeric'] : $refresh_default;
if ($refresh >= 0.5 && $refresh <= 120) { //convert seconds to milliseconds
$refresh = $refresh * 1000;