Fx60 compatibility: Don't try to override toString() on an object

This commit is contained in:
Dan Stillman 2018-02-24 05:04:36 -05:00
parent b2fd9fece7
commit b7b9a2063b

View File

@ -38,10 +38,10 @@ Zotero.Sync.Storage.Result.prototype.updateFromResults = function (results) {
}
Zotero.Sync.Storage.Result.prototype.toString = function () {
/*Zotero.Sync.Storage.Result.prototype.toString = function () {
var obj = {};
for (let prop of this._props) {
obj[prop] = this[prop] || false;
}
return JSON.stringify(obj, null, " ");
}
}*/