Merge "Fix PrivacyChip not visible issue" into sc-dev

This commit is contained in:
Johannes Gallmann
2023-05-30 09:38:06 +00:00
committed by Android (Google) Code Review

View File

@@ -86,9 +86,7 @@ class PrivacyEvent(override val showAnimation: Boolean = true) : StatusEvent {
}
override fun shouldUpdateFromEvent(other: StatusEvent?): Boolean {
return other is PrivacyEvent &&
(other.privacyItems != privacyItems ||
other.contentDescription != contentDescription)
return other is PrivacyEvent
}
override fun updateFromEvent(other: StatusEvent?) {