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

@@ -39,6 +39,7 @@ public class CallNotificationBuilder {
public static Notification getCallInProgressNotification(Context context, int type, Recipient recipient) {
Intent contentIntent = new Intent(context, WebRtcCallActivity.class);
contentIntent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
contentIntent.putExtra(WebRtcCallActivity.EXTRA_STARTED_FROM_FULLSCREEN, true);
PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, contentIntent, 0);