调整国标通道判断逻辑

pull/1642/head
648540858 2024-09-28 12:45:40 +08:00
parent ec1e269616
commit 55001e42d6
2 changed files with 2 additions and 2 deletions

View File

@ -101,7 +101,7 @@ public class InfoRequestProcessor extends SIPRequestProcessorParent implements I
return; return;
} }
// 判断通道类型 // 判断通道类型
if (channel.getGbDeviceId() == null) { if (channel.getGbDeviceDbId() == null) {
// 非国标通道不支持录像回放控制 // 非国标通道不支持录像回放控制
log.warn("[INFO 消息] 非国标通道不支持录像回放控制: 通道ID {}", sendRtpInfo.getChannelId()); log.warn("[INFO 消息] 非国标通道不支持录像回放控制: 通道ID {}", sendRtpInfo.getChannelId());
responseAck(request, Response.FORBIDDEN, ""); responseAck(request, Response.FORBIDDEN, "");

View File

@ -93,7 +93,7 @@ public class DeviceInfoQueryMessageHandler extends SIPRequestProcessorParent imp
return; return;
} }
// 判断通道类型 // 判断通道类型
if (channel.getGbDeviceId() == null) { if (channel.getGbDeviceDbId() == null) {
// 非国标通道不支持录像回放控制 // 非国标通道不支持录像回放控制
log.warn("[DeviceInfo] 非国标通道不支持录像回放控制: 通道ID {}", channel.getGbId()); log.warn("[DeviceInfo] 非国标通道不支持录像回放控制: 通道ID {}", channel.getGbId());
try { try {