}
if (!StringUtils.isEmpty(componentInformation.getIcon())) {
forumComponent.setProperty(COMPONENT_FAVICON_PNG_PARAM, componentInformation.getIcon());
Base64Wrapper wrapper = new Base64Wrapper();
byte[] favIcon = wrapper.decodeB64Bytes(componentInformation.getIcon());
try {
String iconInTheIcoFormat = icoFormatImageService.preProcessAndEncodeInString64(favIcon);
forumComponent.setProperty(COMPONENT_FAVICON_ICO_PARAM, iconInTheIcoFormat);
} catch (ImageProcessException e) {
LOGGER.error("Can't convert fav icon to *.ico format", e);