commit 483da7c42e370904ef836db6a7192b3754eb1547 parent c9b73f2bd39072b05fbc295db5bbf165afd23a80 Author: Dan Stillman <dstillman@zotero.org> Date: Thu, 4 Apr 2013 01:01:07 -0400 Fix never-ending auto-sync Diffstat:
| M | 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 @@ -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; }