network: put back the ":" in SSIDs (#601)

This commit is contained in:
Auguste Baum 2025-09-12 03:07:17 +02:00 committed by GitHub
parent fa00a62600
commit 814831620c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -123,7 +123,7 @@ Singleton {
active: net[0] === "yes",
strength: parseInt(net[1]),
frequency: parseInt(net[2]),
ssid: net[3],
ssid: net[3].replace(rep2, ":"),
bssid: net[4]?.replace(rep2, ":") ?? "",
security: net[5] || ""
};