resized callsign-length to catch all YSF-callsigns
This commit is contained in:
parent
fa336dad04
commit
016546c169
1 changed files with 1 additions and 1 deletions
|
@ -227,7 +227,7 @@ function getHeardList($logLines) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Callsign or ID should be less than 8 chars long, otherwise it could be errorneous
|
// Callsign or ID should be less than 8 chars long, otherwise it could be errorneous
|
||||||
if ( strlen($callsign) < 8 ) {
|
if ( strlen($callsign) < 10 ) {
|
||||||
array_push($heardList, array($timestamp, $mode, $callsign, $id, $target, $source, $duration, $loss, $ber));
|
array_push($heardList, array($timestamp, $mode, $callsign, $id, $target, $source, $duration, $loss, $ber));
|
||||||
$duration = "";
|
$duration = "";
|
||||||
$loss ="";
|
$loss ="";
|
||||||
|
|
Loading…
Reference in a new issue