From 095212f0e801c2382116846c3fa118366b093e4b Mon Sep 17 00:00:00 2001 From: jinqiao Date: Tue, 4 Aug 2026 09:17:43 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E5=8D=8F=E8=AE=AE=E7=AE=A1=E7=90=86):=20?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=8D=8F=E8=AE=AE=E6=9B=B4=E6=96=B0jar?= =?UTF-8?q?=E5=8C=85=E6=97=B6=E4=B8=8D=E7=94=9F=E6=95=88=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../community/protocol/manager/LocalProtocolSupportManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jetlinks-components/protocol-component/src/main/java/org/jetlinks/community/protocol/manager/LocalProtocolSupportManager.java b/jetlinks-components/protocol-component/src/main/java/org/jetlinks/community/protocol/manager/LocalProtocolSupportManager.java index a27219d3f..ade7b72db 100644 --- a/jetlinks-components/protocol-component/src/main/java/org/jetlinks/community/protocol/manager/LocalProtocolSupportManager.java +++ b/jetlinks-components/protocol-component/src/main/java/org/jetlinks/community/protocol/manager/LocalProtocolSupportManager.java @@ -134,7 +134,7 @@ public void checkProtocol(EntityCreatedEvent event) { public void checkProtocol(EntityModifyEvent event) { event.async( Flux.fromIterable(event.getAfter()) - .flatMap(entity -> checkProtocol(entity.toDefinition())) + .flatMap(entity -> init(entity.toDefinition())) ); }