diff --git a/src/modules/examples.ts b/src/modules/examples.ts index a1dab01..7c0682c 100644 --- a/src/modules/examples.ts +++ b/src/modules/examples.ts @@ -44,8 +44,9 @@ export class BasicExampleFactory { ]); Zotero.Plugins.addObserver({ - shutdown: ({ id: pluginID }) => { - this.unregisterNotifier(notifierID); + shutdown: ({ id }) => { + if (id === addon.data.config.addonID) + this.unregisterNotifier(notifierID); }, }); }