1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2025-12-06 21:45:38 -05:00

network: wifi indicator fix

This commit is contained in:
bbedward
2025-07-21 16:12:33 -04:00
parent 67f1c64dd6
commit 6c9e0fb74c

View File

@@ -119,7 +119,7 @@ Item {
name: {
if (!NetworkService.wifiEnabled) {
return "wifi_off";
} else if (NetworkService.networkStatus === "wifi") {
} else if (WifiService.currentWifiSSID !== "") {
return getWiFiSignalIcon(WifiService.wifiSignalStrength);
} else {
return "wifi";