修复138类型默认打开音频
parent
5bc0ff09eb
commit
f89933fb58
|
@ -230,7 +230,11 @@ public class DeviceChannel extends CommonGBChannel {
|
|||
}
|
||||
// 此处对于不在wvp缓存中的行政区划,默认直接存储.保证即使出现wvp的行政区划缓存过老,也可以通过用户自主创建的方式正常使用系统
|
||||
}
|
||||
return XmlUtil.elementDecode(element, DeviceChannel.class);
|
||||
GbCode gbCode = GbCode.decode(deviceChannel.getDeviceId());
|
||||
if ("138".equals(gbCode.getTypeCode())) {
|
||||
deviceChannel.setHasAudio(true);
|
||||
}
|
||||
return deviceChannel;
|
||||
}
|
||||
|
||||
public static DeviceChannel decodeWithOnlyDeviceId(Element element) {
|
||||
|
|
Loading…
Reference in New Issue