From f4cfd1c913ba7e2cc5f5ffca9ee8da1439f0e061 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rogue=E6=9D=A8?= <429871016@163.com> Date: Tue, 2 Sep 2025 04:57:56 +0000 Subject: [PATCH] =?UTF-8?q?!759=20[fix]=20=E8=A7=A3=E5=86=B3=E5=B7=A5?= =?UTF-8?q?=E4=BD=9C=E6=B5=81=E9=80=9A=E7=9F=A5messageType=E5=8F=82?= =?UTF-8?q?=E6=95=B0=E5=88=A4=E7=A9=BA=E9=80=BB=E8=BE=91=E9=94=99=E8=AF=AF?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98=20*=20[fix]=20=E8=A7=A3=E5=86=B3?= =?UTF-8?q?=E5=B7=A5=E4=BD=9C=E6=B5=81=E9=80=9A=E7=9F=A5messageType?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E5=88=A4=E7=A9=BA=E9=80=BB=E8=BE=91=E9=94=99?= =?UTF-8?q?=E8=AF=AF=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../org/dromara/workflow/service/impl/FlwCommonServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ruoyi-modules/ruoyi-workflow/src/main/java/org/dromara/workflow/service/impl/FlwCommonServiceImpl.java b/ruoyi-modules/ruoyi-workflow/src/main/java/org/dromara/workflow/service/impl/FlwCommonServiceImpl.java index d0b53853b..8f8d61eb0 100644 --- a/ruoyi-modules/ruoyi-workflow/src/main/java/org/dromara/workflow/service/impl/FlwCommonServiceImpl.java +++ b/ruoyi-modules/ruoyi-workflow/src/main/java/org/dromara/workflow/service/impl/FlwCommonServiceImpl.java @@ -49,7 +49,7 @@ public class FlwCommonServiceImpl implements IFlwCommonService { */ @Override public void sendMessage(String flowName, Long instId, List messageType, String message) { - if (CollUtil.isNotEmpty(messageType)) { + if (CollUtil.isEmpty(messageType)) { return; } IFlwTaskService flwTaskService = SpringUtils.getBean(IFlwTaskService.class);