Fixed the invalid operator compilation error

pull/41/head
Hieromon Ikasamo 5 years ago committed by Hieromon Ikasamo
parent d9e9eacf1e
commit b9ca4db8d9
  1. 2
      examples/mqttRSSI/mqttRSSI.ino

@ -294,7 +294,7 @@ String saveParams(AutoConnectAux& aux, PageArgument& args) {
AutoConnectText& echo = aux.getElement<AutoConnectText>("parameters");
echo.value = "Server: " + serverName;
echo.value += mqttserver.isValid() ? String(" (OK)") : String(" (ERR)");
echo.value += "<br>" + "Channel ID: " + channelId + "<br>";
echo.value += "<br>Channel ID: " + channelId + "<br>";
echo.value += "User Key: " + userKey + "<br>";
echo.value += "API Key: " + apiKey + "<br>";
echo.value += "Update period: " + String(updateInterval / 1000) + " sec.<br>";

Loading…
Cancel
Save