From 78e87a351cfc9c845eace9b2dee9cdfaa261ebf7 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Tue, 20 Feb 2018 03:30:14 -0500 Subject: [PATCH] Handle relations property in collection fromJSON() --- 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 3a0f5bf75..ca81a6f78 100644 --- a/chrome/content/zotero/xpcom/data/collection.js +++ b/chrome/content/zotero/xpcom/data/collection.js @@ -698,8 +698,7 @@ Zotero.Collection.prototype.fromJSON = function (json) { this.name = json.name; this.parentKey = json.parentCollection ? json.parentCollection : false; - // TODO - //this.setRelations(json.relations); + this.setRelations(json.relations); }