From 4f9f800cce2cf72519d374880961eb5018a9b974 Mon Sep 17 00:00:00 2001 From: Phat Nguyen Date: Wed, 15 May 2024 17:15:36 +0700 Subject: [PATCH] Update local configuration response failed message --- src/AgConfigure.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/AgConfigure.cpp b/src/AgConfigure.cpp index bff679b..710f96a 100644 --- a/src/AgConfigure.cpp +++ b/src/AgConfigure.cpp @@ -280,7 +280,8 @@ bool Configuration::parse(String data, bool isLocal) { if (jconfig[jprop_configurationControl] == String(CONFIGURATION_CONTROL_NAME [ConfigurationControl::ConfigurationControlCloud])) { - failedMessage = "Local configure ignored"; + failedMessage = "Monitor set to accept only configuration from the " + "cloud. Use property configurationControl to change."; jsonInvalid(); return false; }