commit f829e4d6cc509b98dd505e8fe6e942a0e7cfdddb parent 7ef7a841227cea84223e2b588d632ab2af3d1556 Author: Adomas VenĨkauskas <adomas.ven@gmail.com> Date: Fri, 14 Jul 2017 13:40:44 +0300 Fix an integration.js typo. Closes #1263 Diffstat:
| M | 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 @@ -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; } }