From 7b8d8023f2fa28007ee0e1cb2e55a87fc279b411 Mon Sep 17 00:00:00 2001 From: Simon Kornblith Date: Tue, 7 Feb 2012 18:08:33 -0500 Subject: [PATCH] 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 --- chrome/content/zotero/xpcom/integration.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/integration.js b/chrome/content/zotero/xpcom/integration.js index 0f88362721..ad1b3285aa 100644 --- 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;