ufp: properly track assoc IEs

Signed-off-by: John Crispin <john@phrozen.org>
This commit is contained in:
John Crispin
2024-04-26 08:37:10 +02:00
parent e87e017ada
commit a110e46fcc

View File

@@ -294,7 +294,7 @@ function refresh()
let clients = ubus.call(ap, "get_clients").clients;
for (let client in clients) {
let client_cache = prev_ap_cache[client];
if (!client_cache || client_cache.assoc_ie || !client_cache.probe_ie)
if (!client_cache || !client_cache.assoc_ie || !client_cache.probe_ie)
client_cache = client_refresh(ap, client);
global.device_refresh(client);
}