Fix an integration.js typo. Closes #1263

This commit is contained in:
Adomas Venčkauskas 2017-07-14 13:40:44 +03:00
parent 7ef7a84122
commit f829e4d6cc

View file

@ -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;
}
}