From 98d0637e318bf9b340565c9c8fc459b90ace97e1 Mon Sep 17 00:00:00 2001 From: Hieromon Ikasamo Date: Mon, 25 Feb 2019 20:38:25 +0900 Subject: [PATCH] Fixed the invalid operator compilation error --- examples/mqttRSSI/mqttRSSI.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/mqttRSSI/mqttRSSI.ino b/examples/mqttRSSI/mqttRSSI.ino index 7951f2a..668617f 100644 --- a/examples/mqttRSSI/mqttRSSI.ino +++ b/examples/mqttRSSI/mqttRSSI.ino @@ -294,7 +294,7 @@ String saveParams(AutoConnectAux& aux, PageArgument& args) { AutoConnectText& echo = aux.getElement("parameters"); echo.value = "Server: " + serverName; echo.value += mqttserver.isValid() ? String(" (OK)") : String(" (ERR)"); - echo.value += "
" + "Channel ID: " + channelId + "
"; + echo.value += "
Channel ID: " + channelId + "
"; echo.value += "User Key: " + userKey + "
"; echo.value += "API Key: " + apiKey + "
"; echo.value += "Update period: " + String(updateInterval / 1000) + " sec.
";