remove blind bug, as its not a blind bug anymore.

delayed hopping channels by .2 seconds to give firmware time to get ready for hopping.
This commit is contained in:
Jeroen Oudshoorn
2024-02-04 17:41:41 +01:00
parent 34284aa1bc
commit fa7e87b974
3 changed files with 3 additions and 10 deletions

View File

@ -179,8 +179,7 @@ class Agent(Client, Automata, AsyncAdvertiser, AsyncTrainer):
for ap in s['wifi']['aps']:
if ap['encryption'] == '' or ap['encryption'] == 'OPEN':
continue
elif ap['hostname'] in whitelist or ap['mac'][:13].lower() in whitelist or ap[
'mac'].lower() in whitelist:
elif ap['hostname'] in whitelist or ap['mac'][:13].lower() in whitelist or ap['mac'].lower() in whitelist:
continue
else:
aps.append(ap)