diff --git a/chrome/content/zotero/bindings/itembox.xml b/chrome/content/zotero/bindings/itembox.xml index cd89c7fa2d..f52184dbeb 100644 --- a/chrome/content/zotero/bindings/itembox.xml +++ b/chrome/content/zotero/bindings/itembox.xml @@ -1056,11 +1056,14 @@ diff --git a/chrome/content/zotero/xpcom/data/feed.js b/chrome/content/zotero/xpcom/data/feed.js index 2d992517a9..77b6bbf1cd 100644 --- a/chrome/content/zotero/xpcom/data/feed.js +++ b/chrome/content/zotero/xpcom/data/feed.js @@ -44,6 +44,9 @@ Zotero.Feed = function(params = {}) { this._feedCleanupReadAfter = null; this._feedCleanupUnreadAfter = null; this._feedRefreshInterval = null; + this._feedUnreadCount = null; + this._updating = false; + this._previousURL = null; // Feeds are not editable by the user. Remove the setter this.editable = false; @@ -69,10 +72,6 @@ Zotero.Feed = function(params = {}) { return obj[prop]; } }); - this._feedUnreadCount = null; - - this._updating = false; - this._previousURL = null; } Zotero.Feed._colToProp = function(c) {