Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8748,6 +8748,7 @@ public final class io/getstream/video/android/core/CallState {
public final fun getStartsAt ()Lkotlinx/coroutines/flow/StateFlow;
public final fun getStats ()Lio/getstream/video/android/core/CallStats;
public final fun getTeam ()Lkotlinx/coroutines/flow/StateFlow;
public final fun getThumbnail ()Lkotlinx/coroutines/flow/StateFlow;
public final fun getTotalParticipants ()Lkotlinx/coroutines/flow/StateFlow;
public final fun getTranscribing ()Lkotlinx/coroutines/flow/StateFlow;
public final fun getUpdatedAt ()Lkotlinx/coroutines/flow/StateFlow;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -666,6 +666,9 @@ public class CallState(
MutableStateFlow<Map<String, Boolean?>>(emptyMap())
val participantVideoEnabledOverrides = _participantVideoEnabledOverrides.asStateFlow()

private val _thumbnail = MutableStateFlow<String?>(null)
public val thumbnail: StateFlow<String?> = _thumbnail

private var speakingWhileMutedResetJob: Job? = null
private var autoJoiningCall: Job? = null
private var ringingTimerJob: Job? = null
Expand Down Expand Up @@ -1532,6 +1535,7 @@ public class CallState(
_settings.value = response.settings
_transcribing.value = response.transcribing
_team.value = response.team
_thumbnail.value = response.thumbnails?.imageUrl
didUpdateSession(response.session)

updateRingingState()
Expand Down
Loading