Browse Source

修复画板数据入库

Eric 2 years ago
parent
commit
7ff391e074

+ 1 - 2
mec-biz/src/main/java/com/ym/mec/biz/service/impl/WsConnectServiceImpl.java

@@ -65,8 +65,7 @@ public class WsConnectServiceImpl implements WsConnectService {
                 .andSessionIdEqualTo(sessionId)
                 .andRoomIdEqualTo(roomId)
                 .andUserIdEqualTo(Long.parseLong(userId))
-                .andClientTypeEqualTo(clientType)
-                .andDisconnectTimeIsNull();
+                .andClientTypeEqualTo(clientType);
 
         List<WsConnectRecordInfo> recordInfos = wsConnectRecordInfoMapper.selectByExample(example);
         if (CollectionUtils.isEmpty(recordInfos)) {