Skip to content
Snippets Groups Projects
Commit 2076ffff authored by gakin's avatar gakin
Browse files

SSDM-4584 : OpenbisSync spaceTranslation bug fix in ResourceListParser

SVN: 38015
parent b0fb600a
No related branches found
No related tags found
No related merge requests found
...@@ -579,7 +579,8 @@ public class ResourceListParser ...@@ -579,7 +579,8 @@ public class ResourceListParser
String space = extractAttribute(xdNode, "space", nullAllowed); String space = extractAttribute(xdNode, "space", nullAllowed);
if (space != null) if (space != null)
{ {
data.getHarvesterSpaceList().add(spaceNameTranslator.translate(space)); space = spaceNameTranslator.translate(space);
data.getHarvesterSpaceList().add(space);
} }
return space; return space;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment