commit 12da3f00dc146544739264cd94a59331cba4ee03 parent 2320385fa8a9e0293fdaceb45fef3f13d1d900ab Author: Dan Stillman <dstillman@zotero.org> Date: Sat, 24 Sep 2016 00:47:56 -0400 Fix deregistration of auto-sync listener Diffstat:
| M | chrome/content/zotero/xpcom/sync/syncEventListeners.js | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chrome/content/zotero/xpcom/sync/syncEventListeners.js b/chrome/content/zotero/xpcom/sync/syncEventListeners.js @@ -161,7 +161,7 @@ Zotero.Sync.EventListeners.AutoSyncListener = { unregister: function () { if (this._observerID) { - Zotero.Notifier.unregisterObserver(_observerID); + Zotero.Notifier.unregisterObserver(this._observerID); } } }