mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 03:18:06 +00:00
Fixed missing conference subject when calling it's SIP URI without having the conference info
This commit is contained in:
parent
3ee1a59649
commit
9e39a4799d
1 changed files with 2 additions and 1 deletions
|
|
@ -261,6 +261,7 @@ class ConferenceViewModel
|
|||
isPaused.postValue(!isIn)
|
||||
Log.i("$TAG We [${if (isIn) "are" else "aren't"}] in the conference")
|
||||
|
||||
subject.postValue(conference.subjectUtf8.orEmpty())
|
||||
computeParticipants(false)
|
||||
if (conference.participantList.size >= 1) { // we do not count
|
||||
Log.i("$TAG Joined conference already has at least another participant")
|
||||
|
|
@ -312,7 +313,7 @@ class ConferenceViewModel
|
|||
val chatEnabled = conference.currentParams.isChatEnabled
|
||||
isConversationAvailable.postValue(chatEnabled)
|
||||
|
||||
val confSubject = conference.subject.orEmpty()
|
||||
val confSubject = conference.subjectUtf8.orEmpty()
|
||||
Log.i(
|
||||
"$TAG Configuring conference with subject [$confSubject] from call [${call.callLog.callId}]"
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue