mirror of
https://github.com/SimpleMobileTools/Simple-Contacts.git
synced 2025-02-17 03:51:03 +01:00
if the other party hangs up before establishing, close screen immediately
This commit is contained in:
parent
44b6d1fc5a
commit
e96463ad82
@ -151,12 +151,16 @@ class DialerActivity : SimpleActivity(), SensorEventListener {
|
||||
}
|
||||
|
||||
private fun statusDisconnected() {
|
||||
isCallActive = false
|
||||
timerHandler.removeCallbacksAndMessages(null)
|
||||
dialer_hangup_button.beGone()
|
||||
dialer_hangup_button.postDelayed({
|
||||
if (isCallActive) {
|
||||
dialer_hangup_button.postDelayed({
|
||||
finish()
|
||||
}, DISCONNECT_DELAY)
|
||||
} else {
|
||||
finish()
|
||||
}, DISCONNECT_DELAY)
|
||||
}
|
||||
isCallActive = false
|
||||
}
|
||||
|
||||
private fun updateOtherParticipant(contact: Contact?) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user