From 1bd1781dd510f8af3dbcf9b2ca344f7a102f65b3 Mon Sep 17 00:00:00 2001 From: dj2ls Date: Thu, 29 Dec 2022 23:27:16 +0100 Subject: [PATCH] adjustment to session opener while connected --- tnc/data_handler.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tnc/data_handler.py b/tnc/data_handler.py index ebc666e6..9cbf7b8c 100644 --- a/tnc/data_handler.py +++ b/tnc/data_handler.py @@ -1627,10 +1627,9 @@ class DATA: # Station B already tries connecting to Station A. # For avoiding ignoring repeated connect request in case of packet loss # we are only ignoring packets in case we are ISS - if static.ARQ_SESSION and not self.IS_ARQ_SESSION_MASTER: + if static.ARQ_SESSION and self.IS_ARQ_SESSION_MASTER: return False - self.IS_ARQ_SESSION_MASTER = False static.ARQ_SESSION_STATE = "connecting"