Add logging around how call activity is started.

This commit is contained in:
Cody Henthorne
2022-08-17 16:31:45 -04:00
parent b1d1e92dbb
commit 84717b95f7
3 changed files with 5 additions and 2 deletions

View File

@@ -819,6 +819,7 @@ private void processStateless(@NonNull Function1<WebRtcEphemeralState, WebRtcEph
WebRtcViewModel.GroupCallState groupCallState = s.getCallInfoState().getGroupCallState();
if (callState == CALL_INCOMING && (groupCallState == IDLE || groupCallState.isRinging())) {
Log.i(TAG, "Starting call activity from foreground listener");
startCallCardActivityIfPossible();
}
ApplicationDependencies.getAppForegroundObserver().removeListener(this);