Skip to content

Commit 729a90a

Browse files
authored
Merge pull request #482 from jburel/issue_478
Use the correct key
2 parents 5fc066d + 68e6401 commit 729a90a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/openmicroscopy/shoola/env/data/views/calls/DMRefreshLoader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ private void retrieveData(Class rootNodeType,
115115
result = os.loadContainerHierarchy(ctx, rootNodeType, null,
116116
false, ctx.getExperimenter());
117117
if (mapResult.containsKey(ctx)) {
118-
s = (Collection) mapResult.get(userID);
118+
s = (Collection) mapResult.get(ctx);
119119
s.addAll((Collection) result);
120120
} else {
121121
mapResult.put(ctx, result);

0 commit comments

Comments
 (0)