diff --git a/demo-app/src/main/kotlin/io/getstream/video/android/ui/call/CallScreen.kt b/demo-app/src/main/kotlin/io/getstream/video/android/ui/call/CallScreen.kt index d04ff33e85..645a08c4da 100644 --- a/demo-app/src/main/kotlin/io/getstream/video/android/ui/call/CallScreen.kt +++ b/demo-app/src/main/kotlin/io/getstream/video/android/ui/call/CallScreen.kt @@ -194,6 +194,10 @@ fun CallScreen( * This behavior is intentional for this demo-app ONLY and designed to prioritize the "Auto-On" setting over the current state. * * Please keep this behavior in mind, as it might appear unexpected at first glance. + * + * Note: Occasionally, when `call.startTranscription()` might throw a 400 error in the demo app when Transcription is set to "Auto-On", indicating that + * transcription is already in progress. This is expected and can safely be ignored as it does not impact + * the ongoing transcription functionality. */ val isCurrentlyTranscribing by call.state.transcribing.collectAsStateWithLifecycle() diff --git a/stream-video-android-core/src/main/kotlin/io/getstream/video/android/core/Call.kt b/stream-video-android-core/src/main/kotlin/io/getstream/video/android/core/Call.kt index b2e197e67f..0838f4d4ba 100644 --- a/stream-video-android-core/src/main/kotlin/io/getstream/video/android/core/Call.kt +++ b/stream-video-android-core/src/main/kotlin/io/getstream/video/android/core/Call.kt @@ -81,7 +81,6 @@ import org.openapitools.client.models.SendReactionResponse import org.openapitools.client.models.StartTranscriptionResponse import org.openapitools.client.models.StopLiveResponse import org.openapitools.client.models.StopTranscriptionResponse -import org.openapitools.client.models.TranscriptionSettingsResponse import org.openapitools.client.models.UnpinResponse import org.openapitools.client.models.UpdateCallMembersRequest import org.openapitools.client.models.UpdateCallMembersResponse