Fix corrupt bibliography handling. Closes #1503
This commit is contained in:
parent
763d7dec75
commit
2f620c5f91
|
@ -2318,8 +2318,9 @@ Zotero.Integration.BibliographyField = class extends Zotero.Integration.Field {
|
||||||
};
|
};
|
||||||
|
|
||||||
async unserialize() {
|
async unserialize() {
|
||||||
|
var code = this.getCode();
|
||||||
try {
|
try {
|
||||||
return JSON.parse(this.getCode());
|
return JSON.parse(code);
|
||||||
} catch(e) {
|
} catch(e) {
|
||||||
return this.resolveCorrupt(code);
|
return this.resolveCorrupt(code);
|
||||||
}
|
}
|
||||||
|
@ -2333,7 +2334,7 @@ Zotero.Integration.BibliographyField = class extends Zotero.Integration.Field {
|
||||||
throw new Zotero.Exception.UserCancelled("corrupt bibliography resolution");
|
throw new Zotero.Exception.UserCancelled("corrupt bibliography resolution");
|
||||||
} else {
|
} else {
|
||||||
await this.clearCode();
|
await this.clearCode();
|
||||||
return unserialize();
|
return this.unserialize();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue
Block a user