readAllNotificationsButton: also mark voice channels as read (#2140)

This commit is contained in:
sunnie 2024-02-06 18:12:26 +02:00 committed by GitHub
parent 64fa2f8652
commit ec53b0230f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -25,12 +25,13 @@ function onClick() {
const channels: Array<any> = [];
Object.values(GuildStore.getGuilds()).forEach(guild => {
GuildChannelStore.getChannels(guild.id).SELECTABLE.forEach((c: { channel: { id: string; }; }) => {
GuildChannelStore.getChannels(guild.id).SELECTABLE
.concat(GuildChannelStore.getChannels(guild.id).VOCAL)
.forEach((c: { channel: { id: string; }; }) => {
if (!ReadStateStore.hasUnread(c.channel.id)) return;
channels.push({
channelId: c.channel.id,
// messageId: c.channel?.lastMessageId,
messageId: ReadStateStore.lastMessageId(c.channel.id),
readStateType: 0
});