reverting getTags

This commit is contained in:
pjoshi31
2023-02-23 17:12:27 +05:30
parent e1974e6b26
commit 093bee9ace

View File

@@ -267,7 +267,7 @@ public class TagsImpl implements Tags
tags.add(new Tag(pair.getFirst(), pair.getSecond()));
}
return CollectionWithPagingInfo.asPaged(params.getPaging(), tags, results.hasMoreItems(), (totalItems == null ? 0 : totalItems.intValue()));
return CollectionWithPagingInfo.asPaged(params.getPaging(), tags, results.hasMoreItems(), (totalItems == null ? null : totalItems.intValue()));
}
@Experimental