From f829e4d6cc509b98dd505e8fe6e942a0e7cfdddb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adomas=20Ven=C4=8Dkauskas?= Date: Fri, 14 Jul 2017 13:40:44 +0300 Subject: [PATCH] Fix an integration.js typo. Closes #1263 --- chrome/content/zotero/xpcom/integration.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chrome/content/zotero/xpcom/integration.js b/chrome/content/zotero/xpcom/integration.js index f00880c438..ed480aa4d6 100644 --- a/chrome/content/zotero/xpcom/integration.js +++ b/chrome/content/zotero/xpcom/integration.js @@ -1538,8 +1538,8 @@ Zotero.Integration.Fields.prototype.updateSession = Zotero.Promise.coroutine(fun try { yield this._session.loadBibliographyData(this._bibliographyData); } catch(e) { - var exception = new Zotero.Integration.CorruptBibliographyException(me, e); - exception.setContext(me); + var exception = new Zotero.Integration.CorruptBibliographyException(this, e); + exception.setContext(this); throw exception; } }