修复138类型默认打开音频

pull/1642/head
648540858 2024-09-18 16:14:13 +08:00
parent 5bc0ff09eb
commit f89933fb58
1 changed files with 5 additions and 1 deletions

View File

@ -230,7 +230,11 @@ public class DeviceChannel extends CommonGBChannel {
} }
// 此处对于不在wvp缓存中的行政区划,默认直接存储.保证即使出现wvp的行政区划缓存过老,也可以通过用户自主创建的方式正常使用系统 // 此处对于不在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) { public static DeviceChannel decodeWithOnlyDeviceId(Element element) {