mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-17 10:27:03 -04:00
Remix Plugin
This commit is contained in:
parent
dad1464d4f
commit
517164ea97
25 changed files with 1103 additions and 242 deletions
|
@ -129,6 +129,10 @@ function generatePluginList() {
|
|||
content += `**Enabled UserPlugins (${enabledUserPlugins.length}):**\n${makeCodeblock(enabledUserPlugins.join(", "))}`;
|
||||
}
|
||||
|
||||
if (enabledPlugins.length > 75) {
|
||||
content = "We don't support users with more than 75 plugins enabled. Please disable some and try again.";
|
||||
}
|
||||
|
||||
return content;
|
||||
}
|
||||
|
||||
|
|
|
@ -93,7 +93,7 @@ export default definePlugin({
|
|||
},
|
||||
|
||||
shouldHide(messageId: string) {
|
||||
return hiddenMessages?.has(messageId) || false;
|
||||
return hiddenMessages.has(messageId) || false;
|
||||
|
||||
},
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue