Commit 9e4dae0e authored by Ronan Abhamon's avatar Ronan Abhamon

fix(src/app/cli/Cli): fix argument case

parent e90b2311
...@@ -88,7 +88,7 @@ void Cli::addCommand (const QString &functionName, const QString &description, F ...@@ -88,7 +88,7 @@ void Cli::addCommand (const QString &functionName, const QString &description, F
void Cli::makeCommands () noexcept { void Cli::makeCommands () noexcept {
addCommand("show", tr("showFunctionDescription"), cliShow); addCommand("show", tr("showFunctionDescription"), cliShow);
addCommand("call", tr("showFunctionCall"), cliCall, { addCommand("call", tr("showFunctionCall"), cliCall, {
{ "sipAddress", {} } { "sip-address", {} }
}); });
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment