Fixing code

This commit is contained in:
Luca Frosini 2022-09-27 15:44:30 +02:00
parent 402c584c49
commit 0e40f2aa03
1 changed files with 1 additions and 1 deletions

View File

@ -236,7 +236,7 @@ public class Item extends REST<CKANPackage> implements org.gcube.gcat.api.interf
int size = ckan.count(); int size = ckan.count();
return createCountJson(size); return createCountJson(size);
}else { }else {
return list(limit, offset); return super.list(limit, offset);
} }
} }