Remove unnecessary parenthesis
This commit is contained in:
parent
27b475286f
commit
4dc4e5bef8
1 changed files with 2 additions and 2 deletions
|
|
@ -38,8 +38,8 @@ data class RoomListRoomSummary(
|
|||
val hasRoomCall: Boolean,
|
||||
val isDm: Boolean,
|
||||
) {
|
||||
val isHighlighted = (userDefinedNotificationMode != RoomNotificationMode.MUTE &&
|
||||
(numberOfUnreadNotifications > 0 || numberOfUnreadMentions > 0)) ||
|
||||
val isHighlighted = userDefinedNotificationMode != RoomNotificationMode.MUTE &&
|
||||
(numberOfUnreadNotifications > 0 || numberOfUnreadMentions > 0) ||
|
||||
isMarkedUnread
|
||||
|
||||
val hasNewContent = numberOfUnreadMessages > 0 ||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue