Fix on method that wasn't upperized on URI process

This commit is contained in:
Julien Wadel 2021-01-27 10:11:01 +01:00
parent 52cc458a9e
commit cd15f95fce

View file

@ -491,6 +491,7 @@ void Cli::executeCommand (const QString &command, CommandFormat *format) {
functionName = "call";
}
}
functionName = functionName.toUpper();
if( functionName.isEmpty()){
qWarning() << QStringLiteral("There is no method set in `%1`.").arg(command);
return;