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