From d4b10f1c1ef00bbe083864f13d4105b803cfda45 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Sat, 24 Feb 2018 05:04:36 -0500 Subject: [PATCH] Fx60: Don't try to override toString() on an object --- chrome/content/zotero/xpcom/storage/storageResult.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chrome/content/zotero/xpcom/storage/storageResult.js b/chrome/content/zotero/xpcom/storage/storageResult.js index eaa1f38c19..394a2a025a 100644 --- a/chrome/content/zotero/xpcom/storage/storageResult.js +++ b/chrome/content/zotero/xpcom/storage/storageResult.js @@ -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, " "); -} +}*/