Prevent 'waiting for encryption' label in ended call screen if outgoing call was terminated before other end has answered it

This commit is contained in:
Sylvain Berfini 2024-08-09 09:35:33 +02:00
parent ea49d3a411
commit ef32dac910

View file

@ -436,6 +436,10 @@ class CurrentCallViewModel @UiThread constructor() : GenericViewModel() {
configureCall(call)
}
if (LinphoneUtils.isCallEnding(call.state)) {
waitingForEncryptionInfo.postValue(false)
}
updateProximitySensor()
}