Fixed audio only layout when merging calls into conference
This commit is contained in:
parent
0f9b4d706d
commit
a19800bb52
1 changed files with 2 additions and 0 deletions
|
@ -182,6 +182,8 @@ class CallsViewModel : ViewModel() {
|
||||||
val core = coreContext.core
|
val core = coreContext.core
|
||||||
val params = core.createConferenceParams(null)
|
val params = core.createConferenceParams(null)
|
||||||
params.subject = AppUtils.getString(R.string.conference_local_title)
|
params.subject = AppUtils.getString(R.string.conference_local_title)
|
||||||
|
// Prevent group call to start in audio only layout
|
||||||
|
params.isVideoEnabled = true
|
||||||
val conference = core.createConferenceWithParams(params)
|
val conference = core.createConferenceWithParams(params)
|
||||||
conference?.addParticipants(core.calls)
|
conference?.addParticipants(core.calls)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue