Remove unnecessary parenthesis
This commit is contained in:
committed by
Benoit Marty
parent
27b475286f
commit
4dc4e5bef8
+2
-2
@@ -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