未验证 提交 cdf98acc 编写于 作者: C caishunfeng 提交者: GitHub

[Bug] fix close alert if not alert group (#61)

* fix close alert if not alert group
上级 19a67fa4
......@@ -283,6 +283,10 @@ public class ProcessAlertManager {
// no need to close alert
return;
}
if (processInstance.getWarningGroupId() == null || processInstance.getWarningGroupId() == 0) {
// no need to close alert if not close alert
return;
}
Alert alert = new Alert();
alert.setAlertGroupId(processInstance.getWarningGroupId());
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册