修复空指针异常

This commit is contained in:
panlinlin 2020-12-27 08:19:34 +08:00
parent 071c2de9b8
commit 27c0332052

View File

@ -289,6 +289,10 @@ public class SIPCommander implements ISIPCommander {
}
String streamMode = device.getStreamMode().toUpperCase();
MediaServerConfig mediaInfo = storager.getMediaInfo();
if (mediaInfo == null) {
logger.warn("点播时发现ZLM尚未连接...");
return;
}
String mediaPort = null;
// 使用动态udp端口
if (rtpEnable) {
@ -347,8 +351,6 @@ public class SIPCommander implements ISIPCommander {
storager.updateChannel(device.getDeviceId(), deviceChannel);
}
// TODO 订阅SIP response处理对方的错误返回
} catch ( SipException | ParseException | InvalidArgumentException e) {
e.printStackTrace();