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

Commit a14b7f9f authored by Julia Tuttle's avatar Julia Tuttle Committed by Android (Google) Code Review
Browse files

Merge "[AOD RONs] Redact notif content logged by inflation code too" into main

parents f1acda96 7e59adc0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1392,7 +1392,7 @@ public class NotificationContentInflater implements NotificationRowContentBinder
                        mPromotedNotificationContentExtractor.extractContent(mEntry,
                                recoveredBuilder, mBindParams.redactionType, imageModelProvider);
                mLogger.logAsyncTaskProgress(logKey, "extracted promoted notification content: "
                        + promotedContent);
                        + (promotedContent != null ? promotedContent.toRedactedString() : null));

                result.mPromotedContent = promotedContent;
            }
+1 −1
Original line number Diff line number Diff line
@@ -710,7 +710,7 @@ constructor(
                        .also {
                            logger.logAsyncTaskProgress(
                                entry.logKey,
                                "extracted promoted notification content: $it",
                                "extracted promoted notification content: ${it?.toRedactedString()}",
                            )
                        }
                } else {