mirror of
https://github.com/craigerl/aprsd.git
synced 2024-11-21 07:41:49 -05:00
Fixed issue in send_message command
Send Message was using an old mechanism for logging ack packets. This patch fixes that problem.
This commit is contained in:
parent
882e90767d
commit
ecf30d3397
@ -14,6 +14,7 @@ from aprsd.client import client_factory
|
||||
from aprsd.main import cli
|
||||
import aprsd.packets # noqa : F401
|
||||
from aprsd.packets import collector
|
||||
from aprsd.packets import log as packet_log
|
||||
from aprsd.threads import tx
|
||||
|
||||
|
||||
@ -103,7 +104,7 @@ def send_message(
|
||||
cl = client_factory.create()
|
||||
packet = cl.decode_packet(packet)
|
||||
collector.PacketCollector().rx(packet)
|
||||
packet.log("RX")
|
||||
packet_log.log(packet, tx=False)
|
||||
# LOG.debug("Got packet back {}".format(packet))
|
||||
if isinstance(packet, packets.AckPacket):
|
||||
got_ack = True
|
||||
|
Loading…
Reference in New Issue
Block a user