From 4b389221535069a582d927c00125acfae92b9924 Mon Sep 17 00:00:00 2001 From: nicolas Date: Thu, 10 Aug 2017 15:59:08 +0200 Subject: [PATCH] fix(Cli): set the header as optional for --- src/app/cli/Cli.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/cli/Cli.cpp b/src/app/cli/Cli.cpp index a42071e0a..c9f98188b 100644 --- a/src/app/cli/Cli.cpp +++ b/src/app/cli/Cli.cpp @@ -186,7 +186,7 @@ Cli::Cli (QObject *parent) : QObject(parent) { { "sip-address", {} }, { "conference-id", {} } }); addCommand("join-conference", tr("joinConferenceFunctionDescription"), ::cliJoinConference, { - { "sip-address", {} }, { "conference-id", {} }, { "display-name", {} } + { "sip-address", {} }, { "conference-id", {} }, { "display-name", {STRING, true } } }); }