hide ssid from system settings

This commit is contained in:
proddy
2021-05-08 16:01:35 +02:00
parent bb262ed0df
commit bcef360252

View File

@@ -788,7 +788,7 @@ bool System::command_settings(const char * value, const int8_t id, JsonObject &
EMSESP::esp8266React.getNetworkSettingsService()->read([&](NetworkSettings & settings) {
node = json.createNestedObject("WIFI");
node["ssid"] = settings.ssid;
// node["ssid"] = settings.ssid; // commented out - people don't like others to see this
node["hostname"] = settings.hostname;
node["static_ip_config"] = settings.staticIPConfig;
JsonUtils::writeIP(node, "local_ip", settings.localIP);