From 0a856772efbb7bf2b53e08ba5084295417e63d96 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Mon, 18 May 2020 23:27:22 +0200 Subject: [PATCH] Continued: - forgot to copy parent category from source to target MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- src/org/mxchange/jproduct/model/category/Categories.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/org/mxchange/jproduct/model/category/Categories.java b/src/org/mxchange/jproduct/model/category/Categories.java index d58472f..4548c9e 100644 --- a/src/org/mxchange/jproduct/model/category/Categories.java +++ b/src/org/mxchange/jproduct/model/category/Categories.java @@ -80,6 +80,7 @@ public class Categories implements Serializable { targetCategory.setCategoryI18nKey(sourceCategory.getCategoryI18nKey()); targetCategory.setCategoryId(sourceCategory.getCategoryId()); targetCategory.setCategoryShownInStatistics(sourceCategory.getCategoryShownInStatistics()); + targetCategory.setParentCategory(sourceCategory.getParentCategory()); } /** -- 2.39.5