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

Commit e000df71 authored by Brad Ebinger's avatar Brad Ebinger Committed by Android (Google) Code Review
Browse files

Merge "Remove IMS call logs that may leak PII" into rvc-qpr-dev

parents 9f77031d 75d127dc
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -203,10 +203,10 @@ public final class ImsConferenceState implements Parcelable {
                    for (String key : participantData.keySet()) {
                        sb.append(key);
                        sb.append("=");
                        if (ENDPOINT.equals(key) || USER.equals(key)) {
                            sb.append(Rlog.pii(TAG, participantData.get(key)));
                        } else {
                        if (STATUS.equals(key)) {
                            sb.append(participantData.get(key));
                        } else {
                            sb.append(Rlog.pii(TAG, participantData.get(key)));
                        }
                        sb.append(", ");
                    }