remove strange characters at beginning of talker-alias
This commit is contained in:
parent
74340cd1a7
commit
d44c2623a0
1 changed files with 3 additions and 1 deletions
|
@ -808,7 +808,9 @@ function getName($callsign) {
|
|||
// M: 2017-02-13 15:53:30.991 0000: 04 00 5E 49 57 38 44 59 94 *..^IW8DY.*
|
||||
// M: 2017-02-13 15:53:31.253 0000: 05 00 20 47 69 6F 76 61 DC *.. Giova.*
|
||||
function decodeAlias($logLine) {
|
||||
$tok1 = encode(substr($logLine, 40, 2));
|
||||
$tok1 = "";
|
||||
if (substr($logLine, 34, 2) !=="04")
|
||||
$tok1 = encode(substr($logLine, 40, 2));
|
||||
$tok2 = encode(substr($logLine, 43, 2));
|
||||
$tok3 = encode(substr($logLine, 46, 2));
|
||||
$tok4 = encode(substr($logLine, 49, 2));
|
||||
|
|
Loading…
Reference in a new issue