From 8aaf9dd84c5f98e0f138db10ccff063f7b473015 Mon Sep 17 00:00:00 2001 From: Jonathan Harris Date: Tue, 5 Sep 2017 16:38:03 +0100 Subject: [PATCH] Handle burst of messages after NavBeaconScan more gracefully --- eddn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eddn.py b/eddn.py index f0ff3f30..9b4f308c 100644 --- a/eddn.py +++ b/eddn.py @@ -221,7 +221,7 @@ class EDDN: if (entry['event'] == 'Docked' or (entry['event'] == 'Location' and entry['Docked']) or not (config.getint('output') & config.OUT_SYS_DELAY)): - self.sendreplay() # Try to send this and previous entries + self.parent.w.after(self.REPLAYPERIOD, self.sendreplay) # Try to send this and previous entries else: # Can't access replay file! Send immediately. self.parent.status['text'] = _('Sending data to EDDN...')