This commit is contained in:
Mirco Wittrien 2020-02-11 16:55:32 +01:00
parent 62110810b7
commit 20e07e9935
2 changed files with 7 additions and 2 deletions

View File

@ -1563,6 +1563,7 @@
LibraryModules.GuildEmojiStore = BDFDB.ModuleUtils.findByProperties("getGuildEmoji", "getDisambiguatedEmojiContext");
LibraryModules.GuildSettingsUtils = BDFDB.ModuleUtils.findByProperties("updateChannelOverrideSettings", "updateNotificationSettings");
LibraryModules.GuildStore = BDFDB.ModuleUtils.findByProperties("getGuild", "getGuilds");
LibraryModules.GuildUnavailableStore = BDFDB.ModuleUtils.findByProperties("isUnavailable", "totalUnavailableGuilds");
LibraryModules.GuildUtils = BDFDB.ModuleUtils.findByProperties("transitionToGuildSync");
LibraryModules.HistoryUtils = BDFDB.ModuleUtils.findByProperties("transitionTo", "replaceWith", "getHistory");;
LibraryModules.IconUtils = BDFDB.ModuleUtils.findByProperties("getGuildIconURL", "getGuildBannerURL");
@ -7448,7 +7449,11 @@
}
};
InternalComponents.LibraryComponents.GuildComponents = Object.assign({}, BDFDB.ModuleUtils.findByProperties("Separator", "DragPlaceholder"));
InternalComponents.LibraryComponents.GuildComponents = {};
InternalComponents.LibraryComponents.GuildComponents.NativeComponents = BDFDB.ModuleUtils.findByProperties("Separator", "DragPlaceholder");
InternalComponents.LibraryComponents.GuildComponents = Object.assign(InternalComponents.LibraryComponents.GuildComponents, InternalComponents.LibraryComponents.GuildComponents.NativeComponents);
InternalComponents.LibraryComponents.GuildComponents.Badge = BDFDB.ModuleUtils.findByName("GuildBadge");

File diff suppressed because one or more lines are too long