fixBuffer

This commit is contained in:
SpudGunMan
2024-11-19 16:49:28 -08:00
parent a26f1ec334
commit 024a9316ee

View File

@@ -143,7 +143,7 @@ def on_receive(packet, interface):
# update packet log
if displayLog:
packetBuffer.append(packet)
if len(packetBuffer) > 10:
if len(packetBuffer) > 20:
# trim buffer to 20 packets
packetBuffer = packetBuffer[-20:]
update_packetlog_win()