mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 11:28:07 +00:00
Update SDK
This commit is contained in:
parent
9f52ed6a88
commit
4e847ac90e
3 changed files with 3 additions and 3 deletions
|
|
@ -182,7 +182,7 @@ static void cliInitiateConference (QHash<QString, QString> &args) {
|
|||
|
||||
qInfo() << QStringLiteral("Create conference with id: `%1`.").arg(id);
|
||||
auto confParameters = core->createConferenceParams();
|
||||
confParameters->setVideoEnabled(false);// Video is not yet fully supported by the application in conference
|
||||
confParameters->enableVideo(false);// Video is not yet fully supported by the application in conference
|
||||
conference = core->createConferenceWithParams(confParameters);
|
||||
conference->setId(Utils::appStringToCoreString(id));
|
||||
|
||||
|
|
|
|||
|
|
@ -149,7 +149,7 @@ void ConferenceHelperModel::ConferenceAddModel::update () {
|
|||
shared_ptr<linphone::Conference> conference = mConferenceHelperModel->mCore->getConference();
|
||||
if(!conference){
|
||||
auto parameters = mConferenceHelperModel->mCore->createConferenceParams();
|
||||
parameters->setVideoEnabled(false);// Video is not yet fully supported by the application in conference
|
||||
parameters->enableVideo(false);// Video is not yet fully supported by the application in conference
|
||||
conference = mConferenceHelperModel->mCore->createConferenceWithParams(parameters);
|
||||
}
|
||||
auto currentCalls = CoreManager::getInstance()->getCore()->getCalls();
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
Subproject commit 46614e1080d86acf881a14a5ae05cc1096954c80
|
||||
Subproject commit 29966e6f7573e84983981f37c816b62ddea296cd
|
||||
Loading…
Add table
Reference in a new issue