Added fix for ACS-3960

This commit is contained in:
suneet.gupta
2023-02-16 11:22:49 +05:30
parent 6085c179bc
commit bec2ef0d67

View File

@@ -179,7 +179,7 @@ public class TagsImpl implements Tags
for (Pair<NodeRef, String> pair : page)
{
Tag selectedTag = new Tag(pair.getFirst(), pair.getSecond());
selectedTag.setCount(tagsByCountMap.get(selectedTag.getTag())==null?0:tagsByCountMap.get(selectedTag.getTag()));
selectedTag.setCount(tagsByCountMap.get(selectedTag.getTag())==null?0:tagsByCountMap.get(selectedTag.getTag()));
tags.add(selectedTag);
}