From 483da7c42e370904ef836db6a7192b3754eb1547 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Thu, 4 Apr 2013 01:01:07 -0400 Subject: [PATCH] Fix never-ending auto-sync --- chrome/content/zotero/xpcom/sync.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/sync.js b/chrome/content/zotero/xpcom/sync.js index 3e9161afa1..29a95d0be0 100644 --- a/chrome/content/zotero/xpcom/sync.js +++ b/chrome/content/zotero/xpcom/sync.js @@ -1092,7 +1092,7 @@ Zotero.Sync.Runner.EventListener = { notify: function (event, type, ids, extraData) { // TODO: skip others - if (type == 'refresh') { + if (event == 'refresh' || event == 'redraw') { return; }