Update 0BDFDB.plugin.js

This commit is contained in:
Mirco Wittrien 2021-02-05 13:33:05 +01:00
parent 1939d684c3
commit f0e226cc63
1 changed files with 4 additions and 4 deletions

View File

@ -16,13 +16,13 @@ module.exports = (_ => {
"info": { "info": {
"name": "BDFDB", "name": "BDFDB",
"author": "DevilBro", "author": "DevilBro",
"version": "1.3.6", "version": "1.3.7",
"description": "Give other plugins utility functions" "description": "Give other plugins utility functions"
}, },
"rawUrl": "https://mwittrien.github.io/BetterDiscordAddons/Library/0BDFDB.plugin.js", "rawUrl": "https://mwittrien.github.io/BetterDiscordAddons/Library/0BDFDB.plugin.js",
"changeLog": { "changeLog": {
"improved": { "fixed": {
"Canary Changes": "Preparing Plugins for the changes that are already done on Discord Canary" "Server Mark as Read": "Fixed issue with BDFDB.GuildUtils.markAsRead not working"
} }
} }
}; };
@ -2770,7 +2770,7 @@ module.exports = (_ => {
}); });
}; };
BDFDB.GuildUtils.markAsRead = function (guildIds) { BDFDB.GuildUtils.markAsRead = function (guildIds) {
let channels = [guildIds].flat(10).filter(id => id && typeof id == "string" && LibraryModules.GuildStore.getGuild(id)).map(id => BDFDB.ObjectUtils.toArray(LibraryModules.GuildChannelStore.getChannels(id)).flat(10).filter(n => BDFDB.ObjectUtils.is(n)).map(n => n.channel)).flat().filter(n => n); let channels = [guildIds].flat(10).filter(id => id && typeof id == "string" && LibraryModules.GuildStore.getGuild(id)).map(id => BDFDB.ObjectUtils.toArray(LibraryModules.GuildChannelStore.getChannels(id)).flat(10).filter(n => BDFDB.ObjectUtils.is(n)).map(n => n.channel && n.channel.id)).flat().filter(n => n);
if (channels.length) BDFDB.ChannelUtils.markAsRead(channels); if (channels.length) BDFDB.ChannelUtils.markAsRead(channels);
}; };
BDFDB.GuildUtils.rerenderAll = function (instant) { BDFDB.GuildUtils.rerenderAll = function (instant) {