Remove unnecessary parenthesis
This commit is contained in:
committed by
Benoit Marty
parent
68373a2817
commit
8665104756
@@ -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 ||
|
||||
|
||||
Reference in New Issue
Block a user