diff --git a/ax25/ax25Connection.py b/ax25/ax25Connection.py index 97d8ac3..745b46d 100644 --- a/ax25/ax25Connection.py +++ b/ax25/ax25Connection.py @@ -1226,7 +1226,8 @@ def accept_digi_connection(self): digi_uid = str(self.LINK_Connection.uid) digi_uid = reverse_uid(digi_uid) link_conn_port = self.LINK_Connection.own_port - return link_conn_port.accept_digi_conn(digi_uid) + digi_accept: bool = link_conn_port.accept_digi_conn(digi_uid) + return digi_accept def insert_new_connection(self): """ Insert connection for handling """ diff --git a/cfg/constant.py b/cfg/constant.py index 271a5bc..0162d6d 100644 --- a/cfg/constant.py +++ b/cfg/constant.py @@ -3,7 +3,7 @@ mach nach, mach besser. """ -VER = '2.114.32' +VER = '2.114.33' DEBUG_LOG = True CONSOLE_LOG = True diff --git a/doc/changelog.txt b/doc/changelog.txt index 4b68137..a30b982 100644 --- a/doc/changelog.txt +++ b/doc/changelog.txt @@ -11,6 +11,7 @@ Fixes: - Port übergreifender weiterconnect über via Call hat für Probleme gesorgt. (Digi-StopBit der vorherigen Digis wurde nicht korrekt gecheckt) !! Danke an Lars und Benny fürs Testen und Melden !! + (Es gibt immer noch ein Problem mit dem L3-Digi.. Ich arbeite dran) - Sporadischer Fehler beim Speichern der popt_main Config - Unbekannte/Defekte KissFrames werden nicht gefiltert !! Danke an Patrik !!