1
0
mirror of https://github.com/craigerl/aprsd.git synced 2024-11-17 22:01:49 -05:00

Fixed packet processing issue with aprsd send-message

This patch adds the missing PacketList initialization
for the send-message command
This commit is contained in:
Hemna 2021-09-10 15:39:07 -04:00
parent 4164e89016
commit 69b215d4d8

View File

@ -376,6 +376,9 @@ def send_message(
except LoginError: except LoginError:
sys.exit(-1) sys.exit(-1)
packets.PacketList(config=config)
packets.WatchList(config=config)
# Send a message # Send a message
# then we setup a consumer to rx messages # then we setup a consumer to rx messages
# We should get an ack back as well as a new message # We should get an ack back as well as a new message