Skip to content

Commit

Permalink
Fixed reference to ThirdPartyPacket
Browse files Browse the repository at this point in the history
This patch fixes a derefence to the core.ThirdPartyPacket from
issue #165
  • Loading branch information
hemna committed Sep 16, 2024
1 parent 93f752c commit ffa28fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aprsd/client/kiss.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def decode_packet(self, *args, **kwargs):

raw = aprslib.parse(str(frame))
packet = core.factory(raw)
if isinstance(packet, core.ThirdParty):
if isinstance(packet, core.ThirdPartyPacket):
return packet.subpacket
else:
return packet
Expand Down

0 comments on commit ffa28fa

Please sign in to comment.