forked from abner/for-legacy-web
Merge pull request #151 from ryanalexander/count-direct-messages
Treat direct messages as mention, group behavior is the sameui/bot-profile
commit
43010b3b72
|
|
@ -240,15 +240,16 @@ export const ServerListSidebar = observer(({ unreads, lastOpened }: Props) => {
|
|||
let homeUnread: "mention" | "unread" | undefined;
|
||||
let alertCount = 0;
|
||||
for (const x of channels) {
|
||||
if (
|
||||
(x.channel?.channel_type === "DirectMessage"
|
||||
? x.channel?.active
|
||||
: x.channel?.channel_type === "Group") &&
|
||||
x.unread
|
||||
) {
|
||||
if (x.channel?.channel_type === "Group" && x.unread) {
|
||||
homeUnread = "unread";
|
||||
alertCount += x.alertCount ?? 0;
|
||||
}
|
||||
if (
|
||||
x.channel?.channel_type === "DirectMessage" &&
|
||||
x.unread &&
|
||||
x.unread.length > 0
|
||||
)
|
||||
alertCount++;
|
||||
}
|
||||
|
||||
alertCount += [...client.users.values()].filter(
|
||||
|
|
|
|||
Loading…
Reference in New Issue