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

Commit 9e222637 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-dev-plus-aosp

parents 96894457 d3a397fe
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(", ");
                    }