From 0941a14a6535b468edb616bc2dbe0dc12b06028b Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Sat, 20 Jun 2020 18:37:41 -0400 Subject: [PATCH] Remove 'lastsync' assignment from Zotero.Collection constructor --- chrome/content/zotero/xpcom/data/collection.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/chrome/content/zotero/xpcom/data/collection.js b/chrome/content/zotero/xpcom/data/collection.js index 83579a93b1..a6664bf5d0 100644 --- a/chrome/content/zotero/xpcom/data/collection.js +++ b/chrome/content/zotero/xpcom/data/collection.js @@ -31,8 +31,7 @@ Zotero.Collection = function(params = {}) { this._childCollections = new Set(); this._childItems = new Set(); - Zotero.Utilities.assignProps(this, params, ['name', 'libraryID', 'parentID', - 'parentKey', 'lastSync']); + Zotero.Utilities.assignProps(this, params, ['name', 'libraryID', 'parentID', 'parentKey']); } Zotero.extendClass(Zotero.DataObject, Zotero.Collection);