From 719ca5215f34a94fc386a0b97de5cdb1a3865e57 Mon Sep 17 00:00:00 2001 From: Beth Thibodeau Date: Sat, 22 Oct 2022 11:51:34 -0500 Subject: [PATCH] Update equals check Resolve differences from QPR branch Bug: 254990571 Test: build Change-Id: I92c617cee8be7c2620c9bb2b163f7148e3057abc --- .../android/systemui/media/controls/models/player/MediaData.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/SystemUI/src/com/android/systemui/media/controls/models/player/MediaData.kt b/packages/SystemUI/src/com/android/systemui/media/controls/models/player/MediaData.kt index ed649b1c0265d..f006442906e72 100644 --- a/packages/SystemUI/src/com/android/systemui/media/controls/models/player/MediaData.kt +++ b/packages/SystemUI/src/com/android/systemui/media/controls/models/player/MediaData.kt @@ -181,6 +181,7 @@ constructor( return enabled == other.enabled && name == other.name && intent == other.intent && - id == other.id + id == other.id && + showBroadcastButton == other.showBroadcastButton } }