Repaired active mode...

This commit is contained in:
dg9vh 2016-08-10 20:25:48 +00:00
parent fc0369be0f
commit d554429975
2 changed files with 22 additions and 19 deletions

View file

@ -298,7 +298,9 @@ function getActualMode($metaLastHeard, $mmdvmconfigs) {
if (startsWith($mode, "DMR")) { if (startsWith($mode, "DMR")) {
$mode = "DMR"; $mode = "DMR";
} }
if ($listElem[6] ==="") {
return $mode;
} else {
$now = new DateTime(); $now = new DateTime();
$hangtime = getConfigItem("General", "ModeHang", $mmdvmconfigs); $hangtime = getConfigItem("General", "ModeHang", $mmdvmconfigs);
@ -318,6 +320,7 @@ function getActualMode($metaLastHeard, $mmdvmconfigs) {
} else { } else {
return $mode; return $mode;
} }
}
} }
function getDSTARLinks() { function getDSTARLinks() {

View file

@ -1,3 +1,3 @@
<?php <?php
define("VERSION", "20160721-1"); define("VERSION", "20160810-1");
?> ?>