From 091048412a35b2f1d4d1be2a065b8802d964bc5c Mon Sep 17 00:00:00 2001 From: vaxerski <43317083+vaxerski@users.noreply.github.com> Date: Thu, 21 Apr 2022 22:15:42 +0200 Subject: [PATCH] Added warn for old monitor cfg --- src/config/ConfigManager.cpp | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/config/ConfigManager.cpp b/src/config/ConfigManager.cpp index 64da8039..01e87138 100644 --- a/src/config/ConfigManager.cpp +++ b/src/config/ConfigManager.cpp @@ -187,6 +187,15 @@ void CConfigManager::handleMonitor(const std::string& command, const std::string newrule.scale = stof(curitem); + nextItem(); + + if (curitem != "") { + // warning for old cfg + Debug::log(ERR, "Error in parsing rule for %s, possibly old config!", newrule.name.c_str()); + parseError = "Error in setting monitor rule. Are you using the old syntax? Confront the wiki."; + return; + } + // overwrite if exists for (auto& r : m_dMonitorRules) { if (r.name == newrule.name) { @@ -595,4 +604,4 @@ void CConfigManager::performMonitorReload() { } m_bWantsMonitorReload = false; -} \ No newline at end of file +}