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:
parent
0088a5a179
commit
f26bdea981
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue