From a5e5ae69578fff13d53788945eca76e87c46bef9 Mon Sep 17 00:00:00 2001 From: nicolas Date: Thu, 10 Aug 2017 11:36:07 +0200 Subject: [PATCH] fix(Cli): add display-name header to join-conference method --- 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 5ce129382..3f98d2698 100644 --- a/src/app/cli/Cli.cpp +++ b/src/app/cli/Cli.cpp @@ -181,7 +181,7 @@ Cli::Cli (QObject *parent) : QObject(parent) { { "sip-address", {} }, { "conference-id", {} } }); addCommand("join-conference", tr("joinConferenceFunctionDescription"), ::cliJoinConference, { - { "sip-address", {} }, { "conference-id", {} } + { "sip-address", {} }, { "conference-id", {} }, { "display-name", {} } }); }