fix 修复 判断条件写反问题

This commit is contained in:
疯狂的狮子Li 2025-12-24 13:10:47 +08:00
parent 89d6f6f247
commit 874ad7c9b7

View File

@ -74,7 +74,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);