diff --git a/chrome/content/zotero/xpcom/integration.js b/chrome/content/zotero/xpcom/integration.js index f6da3241a..5ec2beec8 100644 --- a/chrome/content/zotero/xpcom/integration.js +++ b/chrome/content/zotero/xpcom/integration.js @@ -2318,8 +2318,9 @@ Zotero.Integration.BibliographyField = class extends Zotero.Integration.Field { }; async unserialize() { + var code = this.getCode(); try { - return JSON.parse(this.getCode()); + return JSON.parse(code); } catch(e) { return this.resolveCorrupt(code); } @@ -2333,7 +2334,7 @@ Zotero.Integration.BibliographyField = class extends Zotero.Integration.Field { throw new Zotero.Exception.UserCancelled("corrupt bibliography resolution"); } else { await this.clearCode(); - return unserialize(); + return this.unserialize(); } } };