diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/LyricViewController.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/LyricViewController.java index a8a52a25f9e2..653c8151fac1 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/LyricViewController.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/LyricViewController.java @@ -114,8 +114,7 @@ public void onNotificationPosted(StatusBarNotification sbn, RankingMap rankingMa if (!mEnabled) return; Notification notification = sbn.getNotification(); - boolean isLyric = ((notification.flags & Notification.FLAG_ALWAYS_SHOW_TICKER) != 0) - && ((notification.flags & Notification.FLAG_ONLY_UPDATE_TICKER) != 0); + boolean isLyric = (notification.flags & Notification.FLAG_ALWAYS_SHOW_TICKER) != 0; boolean isCurrentNotification = mCurrentNotificationId == sbn.getId() && TextUtils.equals(sbn.getPackageName(), mCurrentNotificationPackage);