internal: fix network typeerrors
This commit is contained in:
parent
f2de6e72d5
commit
148366013c
1 changed files with 1 additions and 1 deletions
|
|
@ -41,7 +41,7 @@ Singleton {
|
|||
strength: parseInt(net[1]),
|
||||
frequency: parseInt(net[2]),
|
||||
ssid: net[3],
|
||||
bssid: net[4].replace(rep2, ":")
|
||||
bssid: net[4]?.replace(rep2, ":") ?? ""
|
||||
};
|
||||
});
|
||||
const rNetworks = root.networks;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue