From 69b215d4d8784f00d81591f4063381fd6c35d965 Mon Sep 17 00:00:00 2001 From: Hemna Date: Fri, 10 Sep 2021 15:39:07 -0400 Subject: [PATCH] Fixed packet processing issue with aprsd send-message This patch adds the missing PacketList initialization for the send-message command --- aprsd/main.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/aprsd/main.py b/aprsd/main.py index ca47e4b..6de7358 100644 --- a/aprsd/main.py +++ b/aprsd/main.py @@ -376,6 +376,9 @@ def send_message( except LoginError: sys.exit(-1) + packets.PacketList(config=config) + packets.WatchList(config=config) + # Send a message # then we setup a consumer to rx messages # We should get an ack back as well as a new message