Ver Fonte

bugfix: check deviceId of kks while dispatche msg

vinson há 4 anos atrás
pai
commit
f64def7115

+ 7 - 2
src/main/java/com/tidecloud/dataacceptance/service/impl/YiTongGpsServerHandler.java

@@ -141,8 +141,13 @@ public class YiTongGpsServerHandler extends HexBinaryAcceptanceHandlerAdapter {
 
 			// 增加KKS 协议报文转发
 			// KKS protocolCode = 3
-			boolean isInitial = (LOGIN_MSG == msgType);
-			sendOriginalMsg(data, deviceId,isInitial,3);
+			if (deviceId == null) {
+				deviceId = channelDeviceMap.get(channel);
+			}
+			if (deviceId != null) {
+				boolean isInitial = (LOGIN_MSG == msgType);
+				sendOriginalMsg(data, deviceId,isInitial,3);
+			}
 
 		}