Skip to content

Commit

Permalink
- ....
Browse files Browse the repository at this point in the history
  • Loading branch information
DerHirschi committed Jan 20, 2025
1 parent ca0c4bd commit 832090b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion ax25/ax25Connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 """
Expand Down
2 changes: 1 addition & 1 deletion cfg/constant.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
mach nach,
mach besser.
"""
VER = '2.114.32'
VER = '2.114.33'

DEBUG_LOG = True
CONSOLE_LOG = True
Expand Down
1 change: 1 addition & 0 deletions doc/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 !!
Expand Down

0 comments on commit 832090b

Please sign in to comment.