Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bb4e5e86 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "forward fix VoipCallMonitor regression" into main

parents 93b80f51 9847a4ab
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -198,6 +198,7 @@ public class TelecomServiceImpl {
        public void addCall(CallAttributes callAttributes, ICallEventCallback callEventCallback,
                String callId, String callingPackage) {
            int uid = Binder.getCallingUid();
            int pid = Binder.getCallingPid();
            ApiStats.ApiEvent event = new ApiStats.ApiEvent(ApiStats.API_ADDCALL,
                    uid, ApiStats.RESULT_PERMISSION);
            try {
@@ -217,7 +218,7 @@ public class TelecomServiceImpl {
                // add extras about info used for FGS delegation
                Bundle extras = new Bundle();
                extras.putInt(CallAttributes.CALLER_UID_KEY, uid);
                extras.putInt(CallAttributes.CALLER_PID_KEY, uid);
                extras.putInt(CallAttributes.CALLER_PID_KEY, pid);


                CompletableFuture<CallTransaction> transactionFuture;