commit fe4b75758d1f9cd3b79670a53fa9823d027a338e parent 2523bca65914af00cbdbfdf65dac4f18aa3c4e01 Author: Adomas VenĨkauskas <adomas.ven@gmail.com> Date: Thu, 25 Jan 2018 12:39:50 +0200 Fixes index is not defined error. Closes #1422 Diffstat:
| M | 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 @@ -897,7 +897,7 @@ Zotero.Integration.Fields.prototype._processFields = Zotero.Promise.coroutine(fu // Mark for removal and continue continue; } else if (action == Zotero.Integration.UPDATE) { - this._session.updateIndices[index] = true; + this._session.updateIndices[i] = true; } yield this._session.addCitation(i, noteIndex, citation);