Skip to content

Commit

Permalink
Fixed a bug in the status plugin converting the text field improperly.
Browse files Browse the repository at this point in the history
  • Loading branch information
freemo committed Sep 25, 2016
1 parent fb9ddc3 commit cf901d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apex/plugins/status/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def run(self):
'source': port['identifier'],
'destination': 'APRS',
'path': port['status_path'].split(','),
'text': list(port['status_text'].encode('ascii'))}
'text': port['status_text']}
frame_hash = apex.aprs.util.hash_frame(status_frame)
if frame_hash not in self.packet_cache.values():
self.packet_cache[str(frame_hash)] = frame_hash
Expand Down

0 comments on commit cf901d6

Please sign in to comment.