mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-10-30 01:52:51 +00:00
ufp: properly track assoc IEs
Signed-off-by: John Crispin <john@phrozen.org>
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user