BetterFolders: Fix Close all not working (#808)
This commit is contained in:
parent
c9fd404012
commit
2e6c5eacf7
2 changed files with 6 additions and 2 deletions
|
@ -67,7 +67,7 @@ const settings = definePluginSettings({
|
||||||
export default definePlugin({
|
export default definePlugin({
|
||||||
name: "BetterFolders",
|
name: "BetterFolders",
|
||||||
description: "Shows server folders on dedicated sidebar and adds folder related improvements",
|
description: "Shows server folders on dedicated sidebar and adds folder related improvements",
|
||||||
authors: [Devs.juby],
|
authors: [Devs.juby, Devs.AutumnVN],
|
||||||
patches: [
|
patches: [
|
||||||
{
|
{
|
||||||
find: '("guildsnav")',
|
find: '("guildsnav")',
|
||||||
|
@ -122,7 +122,7 @@ export default definePlugin({
|
||||||
settings,
|
settings,
|
||||||
|
|
||||||
start() {
|
start() {
|
||||||
const getGuildFolder = (id: string) => GuildFolderStore.guildFolders.find(f => f.guildIds.includes(id));
|
const getGuildFolder = (id: string) => GuildFolderStore.getGuildFolders().find(f => f.guildIds.includes(id));
|
||||||
|
|
||||||
FluxDispatcher.subscribe("CHANNEL_SELECT", this.onSwitch = data => {
|
FluxDispatcher.subscribe("CHANNEL_SELECT", this.onSwitch = data => {
|
||||||
if (!settings.store.closeAllFolders && !settings.store.forceOpen)
|
if (!settings.store.closeAllFolders && !settings.store.forceOpen)
|
||||||
|
|
|
@ -245,5 +245,9 @@ export const Devs = /* #__PURE__*/ Object.freeze({
|
||||||
Dziurwa: {
|
Dziurwa: {
|
||||||
name: "Dziurwa",
|
name: "Dziurwa",
|
||||||
id: 787017887877169173n
|
id: 787017887877169173n
|
||||||
|
},
|
||||||
|
AutumnVN: {
|
||||||
|
name: "AutumnVN",
|
||||||
|
id: 393694671383166998n
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue