修复启动偶现报错
parent
ebe24a6c32
commit
4eac6dcc94
|
@ -87,7 +87,9 @@ public class AudioBroadcastManager {
|
|||
public List<AudioBroadcastCatch> get(String deviceId) {
|
||||
List<AudioBroadcastCatch> audioBroadcastCatchList= new ArrayList<>();
|
||||
if (SipUtils.isFrontEnd(deviceId)) {
|
||||
audioBroadcastCatchList.add(data.get(deviceId));
|
||||
if (data.get(deviceId) != null) {
|
||||
audioBroadcastCatchList.add(data.get(deviceId));
|
||||
}
|
||||
}else {
|
||||
for (String key : data.keySet()) {
|
||||
if (key.startsWith(deviceId)) {
|
||||
|
|
Loading…
Reference in New Issue