Skip to content

Commit 2b3fa79

Browse files
committed
Updated packet proof logic
1 parent f6cc9fd commit 2b3fa79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

LXMF/LXMRouter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -980,6 +980,7 @@ def lxmf_delivery(self, lxmf_data, destination_type = None, phy_stats = None):
980980
return False
981981

982982
def delivery_packet(self, data, packet):
983+
packet.prove()
983984
try:
984985
if packet.destination_type != RNS.Destination.LINK:
985986
lxmf_data = b""
@@ -998,7 +999,6 @@ def delivery_packet(self, data, packet):
998999

9991000
phy_stats = {"rssi": packet.rssi, "snr": packet.snr, "q": packet.q}
10001001

1001-
packet.prove()
10021002
self.lxmf_delivery(lxmf_data, packet.destination_type, phy_stats=phy_stats)
10031003

10041004
except Exception as e:

0 commit comments

Comments
 (0)