Commit c8d6e75d57ef1568500bf431b339113373602bd9

Authored by 云中非
1 parent 2785d40a

fix: 场景联动执行条件判断问题修复

... ... @@ -83,7 +83,7 @@ class ReactState {
83 83 }
84 84
85 85
86   - if(matched && conditions != null ){
  86 + if(matched && conditions.size() >0 ){
87 87 matched = false;
88 88 for(DoCondition item:conditions){
89 89 TriggerState conditionState = getOrCreateConditionState(item.getEntityId(),item.getTriggerCondition());
... ...