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

This commit is contained in:
Brad Ebinger
2020-08-13 22:50:53 +00:00
committed by Android (Google) Code Review

View File

@@ -203,10 +203,10 @@ public final class ImsConferenceState implements Parcelable {
for (String key : participantData.keySet()) { for (String key : participantData.keySet()) {
sb.append(key); sb.append(key);
sb.append("="); sb.append("=");
if (ENDPOINT.equals(key) || USER.equals(key)) { if (STATUS.equals(key)) {
sb.append(Rlog.pii(TAG, participantData.get(key)));
} else {
sb.append(participantData.get(key)); sb.append(participantData.get(key));
} else {
sb.append(Rlog.pii(TAG, participantData.get(key)));
} }
sb.append(", "); sb.append(", ");
} }