mirror of
https://github.com/getrebuild/rebuild.git
synced 2024-11-10 08:55:31 +08:00
Merge branch 'master' into develop
This commit is contained in:
commit
47a7335391
1 changed files with 1 additions and 1 deletions
|
@ -635,7 +635,7 @@ public class ApprovalProcessor extends SetUser {
|
|||
LinkedList<String[]> set = new LinkedList<>();
|
||||
while (currentNode != null) {
|
||||
FlowNode node = flowParser.getNode(currentNode);
|
||||
if (!FlowNode.TYPE_CC.equals(node.getType())) {
|
||||
if (FlowNode.TYPE_APPROVER.equals(node.getType())) {
|
||||
set.addFirst(new String[] { node.getNodeId(), node.getDataMap().getString("nodeName") });
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue