From d769999f1074a0369bd75fd00f7443121c9f2bbc Mon Sep 17 00:00:00 2001 From: MichaelDvP Date: Mon, 10 Mar 2025 08:00:50 +0100 Subject: [PATCH] shuntingYard get api-data lowerCase, fix #2457 --- src/core/shuntingYard.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/shuntingYard.hpp b/src/core/shuntingYard.hpp index b631d896b..8de767b0d 100644 --- a/src/core/shuntingYard.hpp +++ b/src/core/shuntingYard.hpp @@ -383,7 +383,7 @@ std::string commands(std::string & expr, bool quotes = true) { data.insert(data.begin(), '"'); data.insert(data.end(), '"'); } - expr.replace(f, l, data); + expr.replace(f, l, emsesp::Helpers::toLower(data)); e = f + data.length(); } else { return expr = "";