From bb4a8ff4d53d4f2e007076a88be2a7f092fefa95 Mon Sep 17 00:00:00 2001 From: n0mjs710 Date: Sun, 25 Nov 2018 15:13:36 -0600 Subject: [PATCH] fix typo in peer limit check --- hblink.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hblink.py b/hblink.py index 1ff847a..2068fcd 100755 --- a/hblink.py +++ b/hblink.py @@ -371,7 +371,7 @@ class HBSYSTEM(DatagramProtocol): elif _command == 'RPTL': # RPTLogin -- a repeater wants to login _peer_id = _data[4:8] # Check to see if we've reached the maximum number of allowed peers - if len(self._peers < self._config['MAX_PEERS']): + if len(self._peers) < self._config['MAX_PEERS']: # Check for valid Radio ID if acl_check(_peer_id, self._CONFIG['GLOBAL']['REG_ACL']) and acl_check(_peer_id, self._config['REG_ACL']): # Build the configuration data strcuture for the peer