@ -182,9 +182,7 @@ class WebRtcCallService : LifecycleService(), CallManager.WebRtcListener {
}
fun broadcastWantsToAnswer ( context : Context , wantsToAnswer : Boolean ) {
val intent = Intent ( ACTION _WANTS _TO _ANSWER )
. putExtra ( EXTRA _WANTS _TO _ANSWER , wantsToAnswer )
val intent = Intent ( ACTION _WANTS _TO _ANSWER ) . putExtra ( EXTRA _WANTS _TO _ANSWER , wantsToAnswer )
LocalBroadcastManager . getInstance ( context ) . sendBroadcast ( intent )
}
@ -506,9 +504,9 @@ class WebRtcCallService : LifecycleService(), CallManager.WebRtcListener {
}
private fun handleAnswerCall ( intent : Intent ) {
val recipient = callManager . recipient ?: return
val pending = callManager . pendingOffer ?: return
val callId = callManager . callId ?: return
val recipient = callManager . recipient ?: return Log . e ( TAG , " No recipient to answer in handleAnswerCall " )
val pending = callManager . pendingOffer ?: return Log . e ( TAG , " No pending offer in handleAnswerCall " )
val callId = callManager . callId ?: return Log . e ( TAG , " No callId in handleAnswerCall " )
val timestamp = callManager . pendingOfferTime
if ( callManager . currentConnectionState != CallState . RemoteRing ) {
@ -526,9 +524,7 @@ class WebRtcCallService : LifecycleService(), CallManager.WebRtcListener {
insertMissedCall ( recipient , true )
terminate ( )
}
if ( didHangup ) {
return
}
if ( didHangup ) { return }
}
callManager . postConnectionEvent ( Event . SendAnswer ) {
@ -686,7 +682,6 @@ class WebRtcCallService : LifecycleService(), CallManager.WebRtcListener {
private fun registerPowerButtonReceiver ( ) {
if ( powerButtonReceiver == null ) {
powerButtonReceiver = PowerButtonReceiver ( )
registerReceiver ( powerButtonReceiver , IntentFilter ( Intent . ACTION _SCREEN _OFF ) )
}
}
@ -719,7 +714,6 @@ class WebRtcCallService : LifecycleService(), CallManager.WebRtcListener {
}
}
private fun handleCheckTimeout ( intent : Intent ) {
val callId = callManager . callId ?: return
val callState = callManager . currentConnectionState
@ -746,9 +740,9 @@ class WebRtcCallService : LifecycleService(), CallManager.WebRtcListener {
}
if ( ! CallNotificationBuilder . areNotificationsEnabled ( this ) && type == TYPE _INCOMING _PRE _OFFER ) {
// start an intent for the fullscreen
// Start an intent for the fullscreen call activity
val foregroundIntent = Intent ( this , WebRtcCallActivity :: class . java )
. setFlags ( FLAG _ACTIVITY _NEW _TASK or FLAG _ACTIVITY _BROUGHT _TO _FRONT )
. setFlags ( FLAG _ACTIVITY _NEW _TASK or FLAG _ACTIVITY _BROUGHT _TO _FRONT or Intent . FLAG _ACTIVITY _REORDER _TO _FRONT )
. setAction ( WebRtcCallActivity . ACTION _FULL _SCREEN _INTENT )
startActivity ( foregroundIntent )
}