mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-04-05 14:37:09 +00:00
strip trailing whitespace on the flight number
This commit is contained in:
parent
a08e3c0fb6
commit
2fc4f7fd3a
1 changed files with 1 additions and 1 deletions
|
|
@ -125,7 +125,7 @@ class ModeSParser(PickleModule):
|
|||
input[10] & 0b00111111
|
||||
]
|
||||
|
||||
message["identification"] = bytes(b + (0x40 if b < 27 else 0) for b in id).decode("ascii")
|
||||
message["identification"] = bytes(b + (0x40 if b < 27 else 0) for b in id).decode("ascii").strip()
|
||||
|
||||
elif type in [5, 6, 7, 8]:
|
||||
# surface position
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue