commit 7b8d8023f2fa28007ee0e1cb2e55a87fc279b411
parent dd46e267eeb55c57bf01077c42c94b42fc1020b8
Author: Simon Kornblith <simon@simonster.com>
Date: Tue, 7 Feb 2012 18:08:33 -0500
Don't clear newIndices. This might fix some errors? But I don't see how they would occur anyway unless another error had already occurred
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chrome/content/zotero/xpcom/integration.js b/chrome/content/zotero/xpcom/integration.js
@@ -1863,6 +1863,7 @@ Zotero.Integration.Session = function(doc) {
this.uncitedItems = {};
this.omittedItems = {};
this.embeddedItems = {};
+ this.newIndices = {};
this.embeddedZoteroItems = {};
this.embeddedZoteroItemsByURI = {};
this.customBibliographyText = {};
@@ -1881,7 +1882,6 @@ Zotero.Integration.Session.prototype.resetRequest = function(doc) {
this.bibliographyDataHasChanged = false;
this.updateItemIDs = {};
this.updateIndices = {};
- this.newIndices = {};
this.oldCitationIDs = this.citationIDs;