1
0
mirror of https://github.com/craigerl/aprsd.git synced 2025-10-21 16:10:21 -04:00

Fixed an issue with client.reset

The reset for the aprsd client was accessing the older
delay_connect, which has been renamed to auto_connect.
This commit is contained in:
Walter Boring 2025-10-08 08:33:39 -04:00
parent 9bf4bfd92c
commit 49202569a8

View File

@ -118,7 +118,7 @@ class APRSDClient:
LOG.info('Resetting client connection.')
if self.driver:
self.driver.close()
if not self.delay_connect:
if self.auto_connect:
self.driver.setup_connection()
if self.filter:
self.driver.set_filter(self.filter)