From cf901d659cb5c1584789d077525011623f29ccfd Mon Sep 17 00:00:00 2001 From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com> Date: Sun, 25 Sep 2016 07:54:50 -0400 Subject: [PATCH] Fixed a bug in the status plugin converting the text field improperly. --- src/apex/plugins/status/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apex/plugins/status/__init__.py b/src/apex/plugins/status/__init__.py index 1b5fd7c..eae2df7 100644 --- a/src/apex/plugins/status/__init__.py +++ b/src/apex/plugins/status/__init__.py @@ -55,7 +55,7 @@ class StatusPlugin(object): '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 -- GitLab