Fixed missing conference subject when calling it's SIP URI without having the conference info

This commit is contained in:
Sylvain Berfini 2025-09-05 15:16:56 +02:00
parent 1e6f501dee
commit 504f6e2a2c

View file

@ -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}]"
)