mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-11-01 19:07:47 +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;
|
let clients = ubus.call(ap, "get_clients").clients;
|
||||||
for (let client in clients) {
|
for (let client in clients) {
|
||||||
let client_cache = prev_ap_cache[client];
|
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);
|
client_cache = client_refresh(ap, client);
|
||||||
global.device_refresh(client);
|
global.device_refresh(client);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user