ratelimit: re-init device settings upon radio level config changes

The device was not re-initialized if ony radio settings get updated without the
device settings changing.

Fixes: WIFI-14050
Signed-off-by: John Crispin <john@phrozen.org>
This commit is contained in:
John Crispin
2024-09-06 13:22:31 +02:00
parent 1f5f5a1a06
commit c312d45e21

View File

@@ -334,7 +334,7 @@ function run_service() {
if (!wildcard(obj, 'hostapd.wlan*'))
continue;
let iface = split(obj, '.')[1];
let device = devices[iface];
let device = get_device(devices, req.args.device);
if (!device)
continue;
let status = uctx.call(obj, 'get_status');