mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-04-17 12:58:28 +00:00
Fixed conversation not available in conference/group call when invited to join in
This commit is contained in:
parent
498d903548
commit
039500c7a2
1 changed files with 5 additions and 0 deletions
|
|
@ -292,6 +292,10 @@ class ConferenceViewModel
|
|||
Log.i("$TAG Joined conference already has at least another participant")
|
||||
firstParticipantOtherThanOurselvesJoinedEvent.postValue(Event(true))
|
||||
}
|
||||
|
||||
val chatEnabled = conference.currentParams.isChatEnabled
|
||||
isConversationAvailable.postValue(chatEnabled)
|
||||
Log.i("$TAG Chat is ${if (chatEnabled) "enabled" else "disabled"}")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -344,6 +348,7 @@ class ConferenceViewModel
|
|||
|
||||
val chatEnabled = conference.currentParams.isChatEnabled
|
||||
isConversationAvailable.postValue(chatEnabled)
|
||||
Log.i("$TAG Chat is ${if (chatEnabled) "enabled" else "disabled"}")
|
||||
|
||||
val confSubject = conference.subjectUtf8.orEmpty()
|
||||
Log.i(
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue