Disable Limit For Plugin Devs
Some checks are pending
Sync to Codeberg / Sync Codeberg and Github (push) Waiting to run
Test / Test (push) Waiting to run

This commit is contained in:
thororen1234 2025-03-12 23:32:18 -04:00
parent 2cafcc9325
commit 597a661d0b
No known key found for this signature in database

View file

@ -129,7 +129,7 @@ function generatePluginList() {
content += `**Enabled UserPlugins (${enabledUserPlugins.length}):**\n${makeCodeblock(enabledUserPlugins.join(", "))}`;
}
if (enabledPlugins.length > 100) {
if (enabledPlugins.length > 100 && !(isPluginDev(UserStore.getCurrentUser()?.id) || isEquicordPluginDev(UserStore.getCurrentUser()?.id))) {
content = "We don't support users with more than 100 plugins enabled. Please disable some and try again.";
}