diff options
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/notification/row/SingleLineViewInflater.kt | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/SingleLineViewInflater.kt b/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/SingleLineViewInflater.kt index 6fc82c9bcd7e..463192cd7042 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/SingleLineViewInflater.kt +++ b/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/SingleLineViewInflater.kt @@ -244,7 +244,7 @@ internal object SingleLineViewInflater { return SingleIcon(null) } val userKey = user.getKeyOrName() - var conversationIcon: Icon? = null + var conversationIcon: Icon? = shortcutIcon var conversationText: CharSequence? = conversationTitle val groups = groupMessages(messages, historicMessages) @@ -253,10 +253,6 @@ internal object SingleLineViewInflater { if (!isGroupConversation) { // Conversation is one-to-one, load the single icon // Let's resolve the icon / text from the last sender - if (shortcutIcon != null) { - conversationIcon = shortcutIcon - } - for (i in messages.lastIndex downTo 0) { val message = messages[i] val sender = message.senderPerson |