Fix header sanitization.

Fix for ag/12910438 which nested the top line a level below the header.

Test: manual testing
Change-Id: I5f33da102c1f018dfdbb4bcf7e0f1d11c8ff554a
This commit is contained in:
Jeff DeCew
2020-10-27 16:55:07 -04:00
parent 3026b03ea5
commit da25eef70f

View File

@@ -170,7 +170,7 @@ public class NotificationHeaderUtil {
private void sanitizeChild(View child) {
if (child != null) {
ViewGroup header = child.findViewById(
com.android.internal.R.id.notification_header);
com.android.internal.R.id.notification_top_line);
sanitizeHeader(header);
}
}