small performance tweak in mode detection \(active mode\)
This commit is contained in:
parent
016546c169
commit
2abd148127
1 changed files with 5 additions and 4 deletions
|
@ -260,12 +260,13 @@ function getLastHeard($logLines) {
|
|||
|
||||
function getActualMode($metaLastHeard, $mmdvmconfigs) {
|
||||
// returns mode of repeater actual working in
|
||||
$lastHeard = $metaLastHeard;
|
||||
array_multisort($lastHeard,SORT_DESC);
|
||||
$listElem = $lastHeard[0];
|
||||
|
||||
//$lastHeard = $metaLastHeard;
|
||||
//array_multisort($lastHeard,SORT_DESC);
|
||||
//$listElem = $lastHeard[0];
|
||||
$listElem = $metaLastHeard[0];
|
||||
$timestamp = new DateTime($listElem[0]);
|
||||
$mode = $listElem[1];
|
||||
var_dump($listElem);
|
||||
if (startsWith($mode, "DMR")) {
|
||||
$mode = "DMR";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue