Fixed an issue where the wrong SystemStatus Wi-Fi debug info was shown

This commit is contained in:
Leon Styhre 2025-02-22 21:08:41 +01:00
parent e59f19c2ba
commit 53bae28335

View file

@ -122,7 +122,7 @@ void SystemStatus::pollStatus()
std::string status {"Bluetooth "};
status.append(mHasBluetooth ? "enabled" : "disabled")
.append(", Wi-Fi ")
.append(mHasBluetooth ? "enabled" : "disabled")
.append(mHasWifi ? "enabled" : "disabled")
.append(", cellular ")
.append(mHasCellular ? "enabled" : "disabled")
.append(", battery ")