1
0
Fork 1
mirror of https://github.com/Vendicated/Vencord.git synced 2025-01-10 18:06:22 +00:00

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

This commit is contained in:
sunnie 2024-02-06 18:12:26 +02:00 committed by Luna
parent 7e3a73db06
commit 7db778effd

View file

@ -25,16 +25,17 @@ function onClick() {
const channels: Array<any> = [];
Object.values(GuildStore.getGuilds()).forEach(guild => {
GuildChannelStore.getChannels(guild.id).SELECTABLE.forEach((c: { channel: { id: string; }; }) => {
if (!ReadStateStore.hasUnread(c.channel.id)) return;
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
channels.push({
channelId: c.channel.id,
messageId: ReadStateStore.lastMessageId(c.channel.id),
readStateType: 0
});
});
});
});
FluxDispatcher.dispatch({