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

Commit 63ce733e authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add CallStateChanged value for CallAnomalyWatchdog"

parents 15687989 84ce8c48
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1278,7 +1278,7 @@ public class Call implements CreateConnectionResponse, EventManager.Loggable,
            int statsdDisconnectCause = (newState == CallState.DISCONNECTED) ?
                    getDisconnectCause().getCode() : DisconnectCause.UNKNOWN;
            TelecomStatsLog.write(TelecomStatsLog.CALL_STATE_CHANGED, newState,
                    statsdDisconnectCause, isSelfManaged(), isExternalCall());
                    statsdDisconnectCause, isSelfManaged(), isExternalCall(), isEmergencyCall());
        }
        return true;
    }
+1 −1
Original line number Diff line number Diff line
@@ -347,7 +347,7 @@ public class CallAnomalyWatchdog extends CallsManagerListenerBase implements Cal
    private void writeCallStateChangedAtom(Call call) {
        TelecomStatsLog.write(TelecomStatsLog.CALL_STATE_CHANGED, call.getState(),
                DisconnectCause.ERROR, call.isSelfManaged(),
                call.isExternalCall());
                call.isExternalCall(), call.isEmergencyCall());
    }

    /**