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

Commit d3a397fe authored by Brad Ebinger's avatar Brad Ebinger
Browse files

Remove IMS call logs that may leak PII

Bug: 160389340
Test: Check logs for PII
Change-Id: I203b37d8e643c59d69aa26097d223fc4b3f8e332
parent 01914942
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(", ");
                    }