Potential bugfixery for #1218
This commit is contained in:
parent
7a51f5e3cc
commit
b679adad45
1 changed files with 6 additions and 1 deletions
|
@ -3082,8 +3082,13 @@ Zotero.Integration.DocumentData = function(string) {
|
||||||
Zotero.Integration.DocumentData.prototype.serialize = function() {
|
Zotero.Integration.DocumentData.prototype.serialize = function() {
|
||||||
// If we've retrieved data with version 4 (JSON), serialize back to JSON
|
// If we've retrieved data with version 4 (JSON), serialize back to JSON
|
||||||
if (this.dataVersion == 4) {
|
if (this.dataVersion == 4) {
|
||||||
|
// Filter style properties
|
||||||
|
let style = {};
|
||||||
|
for (let prop of ['styleID', 'locale', 'hasBibliography', 'bibliographyStyleHasBeenSet']) {
|
||||||
|
style[prop] = this.style[prop];
|
||||||
|
}
|
||||||
return JSON.stringify({
|
return JSON.stringify({
|
||||||
style: this.style,
|
style,
|
||||||
prefs: this.prefs,
|
prefs: this.prefs,
|
||||||
sessionID: this.sessionID,
|
sessionID: this.sessionID,
|
||||||
zoteroVersion: Zotero.version,
|
zoteroVersion: Zotero.version,
|
||||||
|
|
Loading…
Add table
Reference in a new issue