fix: empty channels have unread messages

Signed-off-by: Infi <infi@infi.sh>
This commit is contained in:
Infi 2023-09-27 20:22:49 +02:00
parent cdd1830487
commit f9f2f60f35
1 changed files with 1 additions and 1 deletions

View File

@ -430,7 +430,7 @@ fun RowScope.ChannelList(
ch.id!!,
lastMessageID
)
} ?: true,
} ?: false,
onClick = {
onChannelClick(ch.id ?: return@DrawerChannel)
},