wifi-scripts: ucode: iwinfo: fix 'unknown' typo

The 'unknown' string was misspelled as 'unknonw'.

Signed-off-by: Sean Khan <datapronix@protonmail.com>
Link: https://github.com/openwrt/openwrt/pull/18039
Signed-off-by: Robert Marko <robimarko@gmail.com>
This commit is contained in:
Sean Khan 2025-02-19 20:01:29 -05:00 committed by Robert Marko
parent 0088a5a179
commit f26bdea981

View file

@ -96,7 +96,7 @@ export let ifaces = {};
for (let k, v in interfaces) { for (let k, v in interfaces) {
let iface = ifaces[v.ifname] = v; let iface = ifaces[v.ifname] = v;
iface.mode = iftypes[iface.iftype] ?? 'unknonw', iface.mode = iftypes[iface.iftype] ?? 'unknown',
iface.noise = get_noise(iface); iface.noise = get_noise(iface);
iface.country = get_country(iface); iface.country = get_country(iface);
iface.max_power = get_max_power(iface); iface.max_power = get_max_power(iface);