We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8b86499 + cd67c20 commit e404946Copy full SHA for e404946
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "lib-iitc-manager",
3
- "version": "1.9.2",
+ "version": "1.9.3",
4
"description": "Library for managing IITC plugins",
5
"main": "src/index.js",
6
"type": "module",
src/worker.js
@@ -697,7 +697,7 @@ export class Worker {
697
}
698
699
// Updating a disabled plugin should not trigger the event
700
- if (event !== 'remove' && plugins[uid]?.status !== 'on') {
+ if (!isCore && event !== 'remove' && plugins[uid]?.status !== 'on') {
701
delete plugins[uid];
702
703
0 commit comments