Fix for DS-2991

This commit is contained in:
cjuergen
2016-01-18 17:06:03 +01:00
parent 592207245c
commit 6a9de213a9

View File

@@ -82,7 +82,7 @@
}
out.println("<br>");
// Get the collections in this community
List<Collection> cols = (List<Collection>) collectionMap.get(c.getID());
List<Collection> cols = (List<Collection>) collectionMap.get(c.getID().toString());
if (cols != null && cols.size() > 0)
{
out.println("<ul class=\"media-list\">");
@@ -114,7 +114,7 @@
}
// Get the sub-communities in this community
List<Community> comms = (List<Community>) subcommunityMap.get(c.getID());
List<Community> comms = (List<Community>) subcommunityMap.get(c.getID().toString());
if (comms != null && comms.size() > 0)
{
out.println("<ul class=\"media-list\">");