mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-06-22 02:55:21 -04:00
feat(network): add saved WiFi state to settings (#2648)
This commit is contained in:
@@ -142,9 +142,11 @@ Singleton {
|
||||
|
||||
readonly property var savedConnections: wifiNetworks.filter(n => n.saved).map(n => ({
|
||||
"ssid": n.ssid,
|
||||
"saved": true
|
||||
"saved": true,
|
||||
"outOfRange": false
|
||||
}))
|
||||
readonly property var savedWifiNetworks: savedConnections
|
||||
readonly property int savedWifiStateApiVersion: 26
|
||||
readonly property var ssidToConnectionName: {
|
||||
const map = {};
|
||||
for (const n of wifiNetworks) {
|
||||
|
||||
Reference in New Issue
Block a user