Skip to content
Snippets Groups Projects
Commit 5f3bcabd authored by kbeyro's avatar kbeyro
Browse files

update list to be string created

parent f53f37a6
No related branches found
No related tags found
2 merge requests!41release/1.6.4 into 'develop',!40Create separate appState for domains
Pipeline #89643 passed
......@@ -163,7 +163,7 @@ public class NotificationManager {
});
List<VlabAppListElement> appList = objectMapper.convertValue(mailAttributes.getOtherAttributes().get("appList"), new TypeReference<List<VlabAppListElement>>() {});
mailAttributes.getOtherAttributes().put("appList",appList.stream().map(VlabAppListElement::getAppListName).collect(Collectors.joining())) ;
mailAttributes.getOtherAttributes().put("appList",appList.stream().map(VlabAppListElement::getAppListName).collect(Collectors.joining(", "))) ;
}
if (contactFormKey.isEmpty()) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment