Remove 'lastsync' assignment from Zotero.Collection constructor
This commit is contained in:
parent
b4522535e8
commit
0941a14a65
1 changed files with 1 additions and 2 deletions
|
@ -31,8 +31,7 @@ Zotero.Collection = function(params = {}) {
|
||||||
this._childCollections = new Set();
|
this._childCollections = new Set();
|
||||||
this._childItems = new Set();
|
this._childItems = new Set();
|
||||||
|
|
||||||
Zotero.Utilities.assignProps(this, params, ['name', 'libraryID', 'parentID',
|
Zotero.Utilities.assignProps(this, params, ['name', 'libraryID', 'parentID', 'parentKey']);
|
||||||
'parentKey', 'lastSync']);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Zotero.extendClass(Zotero.DataObject, Zotero.Collection);
|
Zotero.extendClass(Zotero.DataObject, Zotero.Collection);
|
||||||
|
|
Loading…
Reference in a new issue