raised size of callsign to catch all in YSF
This commit is contained in:
parent
9599b66c5a
commit
84f7066820
1 changed files with 2 additions and 2 deletions
|
@ -226,8 +226,8 @@ function getHeardList($logLines) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Callsign or ID should be less than 10 chars long, otherwise it could be errorneous
|
// Callsign or ID should be less than 11 chars long, otherwise it could be errorneous
|
||||||
if ( strlen($callsign) < 10 ) {
|
if ( strlen($callsign) < 11 ) {
|
||||||
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