1.2.31 fix minor test bug

This commit is contained in:
Kevin Hester
2021-05-03 10:38:06 +08:00
parent b787f46404
commit 356aa6dfdf
5 changed files with 14 additions and 8 deletions

View File

@@ -31,7 +31,8 @@ def onReceive(packet, interface):
if p.decoded.portnum == "TEXT_MESSAGE_APP":
# We only care a about clear text packets
receivedPackets.append(p)
if receivedPackets != None:
receivedPackets.append(p)
def onNode(node):

View File

@@ -1,6 +1,6 @@
from collections import defaultdict
import serial
import serial, traceback
import serial.tools.list_ports
from queue import Queue
import threading, sys, time, logging
@@ -87,3 +87,4 @@ class DeferredExecution():
except:
logging.error(
f"Unexpected error in deferred execution {sys.exc_info()[0]}")
print(traceback.format_exc())