-
-
Notifications
You must be signed in to change notification settings - Fork 407
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Bug] RoleMembers not showing in context menu #787
Comments
@zerebos pls fix |
its working for me scratch that, is PermissionsViewer and Channel Permissions not working for anyone? |
PR #792 addresses this but if you don't wanna rebuild the plugin you can do this Go to Plugins -> RoleMembers and Edit code ⚙️ --- a/src/plugins/RoleMembers/index.js
+++ b/src/plugins/RoleMembers/index.js
@@ -10,7 +10,7 @@ module.exports = (Plugin, Api) => {
const filter = (obj, predicate) => from(Object.entries(obj).filter((o) => {return predicate(o[1]);}));
const SelectedGuildStore = DiscordModules.SelectedGuildStore;
- const GuildStore = DiscordModules.GuildStore;
+ const GuildStore = Webpack.getStore("GuildStore");
const GuildMemberStore = DiscordModules.GuildMemberStore;
const UserStore = DiscordModules.UserStore;
const ImageResolver = DiscordModules.ImageResolver; |
Thx. It Worked |
thanks as well. Do you know approximately how large the server has to be before the script stops working? Some bigger servers get 0 returns in the member list while smaller ones work as intended. Thanks again |
Could you share a Console log if there's any errors when it fails to pull users in larger servers? I pushed the fix via a PR for this and wouldn't mind fixing this issue if you can provide more information |
Which plugin/theme is this about?
RoleMembers
Describe the Bug
Plugin not showing in context menu
To Reproduce
Literally just enable the plugin
Expected Behavior
Role Members should show in context menu
The text was updated successfully, but these errors were encountered: