From 49202569a81d1d8f982efe2c6d015f44f6ec4a5a Mon Sep 17 00:00:00 2001 From: Walter Boring Date: Wed, 8 Oct 2025 08:33:39 -0400 Subject: [PATCH] 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. --- aprsd/client/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aprsd/client/client.py b/aprsd/client/client.py index b5dcc69..b437733 100644 --- a/aprsd/client/client.py +++ b/aprsd/client/client.py @@ -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)