fix 修复 判断条件写反问题

This commit is contained in:
疯狂的狮子Li 2025-12-24 13:11:11 +08:00
parent 577bb456a4
commit b4e1bf2592

View File

@ -77,7 +77,7 @@ public class WorkflowGlobalListener implements GlobalListener {
String ext = listenerVariable.getNode().getExt(); String ext = listenerVariable.getNode().getExt();
if (StringUtils.isNotBlank(ext)) { if (StringUtils.isNotBlank(ext)) {
Map<String, Object> variable = listenerVariable.getVariable(); Map<String, Object> variable = listenerVariable.getVariable();
if (CollUtil.isNotEmpty(variable)) { if (CollUtil.isEmpty(variable)) {
variable = new HashMap<>(); variable = new HashMap<>();
} }
NodeExtVo nodeExt = nodeExtService.parseNodeExt(ext, variable); NodeExtVo nodeExt = nodeExtService.parseNodeExt(ext, variable);