Ensure that the call is not closed when it is an External call.
This commit is contained in:
@@ -149,15 +149,18 @@ class CallScreenPresenter(
|
|||||||
.launchIn(this)
|
.launchIn(this)
|
||||||
}
|
}
|
||||||
|
|
||||||
LaunchedEffect(Unit) {
|
if (callType is CallType.RoomCall) {
|
||||||
// Wait for the call to be joined, if it takes too long, we display an error
|
// Note: For external calls isWidgetLoaded will always be false
|
||||||
delay(10.seconds)
|
LaunchedEffect(Unit) {
|
||||||
|
// Wait for the call to be joined, if it takes too long, we display an error
|
||||||
|
delay(10.seconds)
|
||||||
|
|
||||||
if (!isWidgetLoaded) {
|
if (!isWidgetLoaded) {
|
||||||
Timber.w("The call took too long to load. Displaying an error before exiting.")
|
Timber.w("The call took too long to load. Displaying an error before exiting.")
|
||||||
|
|
||||||
// This will display a simple 'Sorry, an error occurred' dialog and force the user to exit the call
|
// This will display a simple 'Sorry, an error occurred' dialog and force the user to exit the call
|
||||||
webViewError = ""
|
webViewError = ""
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user