Merge "Null-check notif chan when ident people notifs" into rvc-dev am: b687bc21e1 am: 208e943b1e

Change-Id: I5ab9255027b10da3e6ad540d96a3542b1a5140f2
This commit is contained in:
Automerger Merge Worker
2020-03-11 23:16:58 +00:00

View File

@@ -83,7 +83,7 @@ class PeopleNotificationIdentifierImpl @Inject constructor(
private val Ranking.personTypeInfo
get() = when {
channel.isImportantConversation -> TYPE_IMPORTANT_PERSON
channel?.isImportantConversation == true -> TYPE_IMPORTANT_PERSON
isConversation -> TYPE_PERSON
else -> TYPE_NON_PERSON
}