internal: fix network typeerrors

This commit is contained in:
2 * r + 2 * t 2025-06-26 15:59:33 +10:00
parent f2de6e72d5
commit 148366013c

View file

@ -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;