From 15859df05730bbe72572bdaee59172e5ddb9807d Mon Sep 17 00:00:00 2001 From: Jeffrey Phillips Freeman <jeffrey.freeman@syncleus.com> Date: Sun, 25 Sep 2016 07:59:18 -0400 Subject: [PATCH] Fixed a bug in the id plugin where the text field was int he wrong format. --- src/apex/plugins/id/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apex/plugins/id/__init__.py b/src/apex/plugins/id/__init__.py index 5a95ba9..1e6364e 100644 --- a/src/apex/plugins/id/__init__.py +++ b/src/apex/plugins/id/__init__.py @@ -53,7 +53,7 @@ class IdPlugin(object): port = self.port_map[port_name] id_frame = {'source': port['identifier'], 'destination': 'ID', 'path': port['id_path'].split(','), - 'text': list(port['id_text'].encode('ascii'))} + 'text': port['id_text']} frame_hash = apex.aprs.util.hash_frame(id_frame) if frame_hash not in self.packet_cache.values(): self.packet_cache[str(frame_hash)] = frame_hash -- GitLab