Merge "Remove IMS call logs that may leak PII" into rvc-qpr-dev am: e000df714d am: bbd2d67e87
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/12366057 Change-Id: I06c580266cb550367b85ed07c3d48152af8543c4
This commit is contained in:
@@ -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(", ");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user