diff --git a/.settings/org.eclipse.wst.common.component b/.settings/org.eclipse.wst.common.component index 6e7cc3c..7d683bf 100644 --- a/.settings/org.eclipse.wst.common.component +++ b/.settings/org.eclipse.wst.common.component @@ -4,9 +4,6 @@ - - uses - diff --git a/pom.xml b/pom.xml index 024ea9a..14c7d2b 100644 --- a/pom.xml +++ b/pom.xml @@ -13,7 +13,7 @@ workspace-widget-portlet war workspace-widget-portlet Portlet - 1.1.0-SNAPSHOT + 1.2.0-SNAPSHOT Workspace Widget diff --git a/src/main/java/org/gcube/portlets/user/wswidget/StorageHubServiceUtil.java b/src/main/java/org/gcube/portlets/user/wswidget/StorageHubServiceUtil.java index 167707a..85a2651 100644 --- a/src/main/java/org/gcube/portlets/user/wswidget/StorageHubServiceUtil.java +++ b/src/main/java/org/gcube/portlets/user/wswidget/StorageHubServiceUtil.java @@ -40,10 +40,10 @@ public class StorageHubServiceUtil { List theChildren = null; if (offset >= 0) { int limit = offset; - theChildren = client.getChildren(itemId, from, limit, "hl:accounting"); + theChildren = client.getChildren(itemId, from, limit, false, "hl:accounting"); } else { //all the items - theChildren = client.getChildren(itemId, "hl:accounting"); + theChildren = client.getChildren(itemId, false, "hl:accounting"); } if (theChildren == null || theChildren.isEmpty()) { toReturn.setChildren(children);