Commit c9c70b584727c85c1ba2cb38d690b51c68efe7dc
1 parent
6dfa38c188
Exists in
master
and in
6 other branches
1
Showing 1 changed file with 1 additions and 1 deletions
platform-job-index/src/main/java/com/lyms/platform/job/index/restore/data/SyncDataWork.java
View file @
c9c70b5
| ... | ... | @@ -1196,7 +1196,7 @@ |
| 1196 | 1196 | } catch (Exception e) { |
| 1197 | 1197 | ERROR_LOGGER.error("convert high risk error." + list2, e); |
| 1198 | 1198 | } |
| 1199 | - if (null != antExChuModel && !"{}".equals(antExChuModel.getOtherHighRisk()) && !"[]".equals(antExChuModel.getOtherHighRisk())) { | |
| 1199 | + if (null != antExChuModel && StringUtils.isNotEmpty(antExChuModel.getOtherHighRisk()) && !"{}".equals(antExChuModel.getOtherHighRisk()) && !"[]".equals(antExChuModel.getOtherHighRisk())) { | |
| 1200 | 1200 | String otherHighRisk = antExChuModel.getOtherHighRisk(); |
| 1201 | 1201 | List<Map> otherHighRisks = new ArrayList<>(); |
| 1202 | 1202 | if (otherHighRisk.startsWith("[") && otherHighRisk.endsWith("]")) { |