|
|
@ -166,7 +166,14 @@ public class AppSubsetVersionRest implements AppSubsetVersionFeign { |
|
|
|
appSubsetVersionOneDto.setModulePluginName(""); |
|
|
|
} |
|
|
|
appSubsetVersionOneDto.setAppName(dto.getAppName()); |
|
|
|
appSubsetVersionOneDto.setIconUrl(dto.getIconUrl()); |
|
|
|
if (StringUtils.isNotBlank(dto.getIconUrl())) { |
|
|
|
if (dto.getIconUrl().contains(fileUploadComponent.getUrlPrefix())) { |
|
|
|
appSubsetVersionOneDto.setIconUrl(dto.getIconUrl().replace(fileUploadComponent.getUrlPrefix(), "")); |
|
|
|
} else { |
|
|
|
appSubsetVersionOneDto.setIconUrl(dto.getIconUrl()); |
|
|
|
} |
|
|
|
} |
|
|
|
// appSubsetVersionOneDto.setIconUrl(dto.getIconUrl());
|
|
|
|
appSubsetVersionOneDto.setUpgradeInfo(dto.getUpgradeInfo()); |
|
|
|
appSubsetVersionOneDto.setType(dto.getType()); |
|
|
|
appSubsetVersionOneDto.setSourceAction(dto.getSourceAction()); |
|
|
|