mirror of
https://github.com/jketterl/openwebrx.git
synced 2026-04-05 14:37:09 +00:00
recognize third party data (don't think we can parse them)
This commit is contained in:
parent
34a8311647
commit
bdbe45e322
1 changed files with 3 additions and 0 deletions
|
|
@ -144,6 +144,9 @@ class AprsParser(object):
|
|||
elif information[0] == ">":
|
||||
# status update
|
||||
aprsData.update(self.parseStatusUpate(information[1:]))
|
||||
elif information[0] == "}":
|
||||
# third party
|
||||
aprsData["type"] = "thirdparty"
|
||||
|
||||
return aprsData
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue