recognize third party data (don't think we can parse them)

This commit is contained in:
Jakob Ketterl 2019-08-17 20:01:12 +02:00
parent 34a8311647
commit bdbe45e322
1 changed files with 3 additions and 0 deletions

View File

@ -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