修复空指针异常

pull/31/head
panlinlin 2020-12-27 08:19:34 +08:00
parent 418e441dfc
commit 6968839f21
1 changed files with 4 additions and 2 deletions

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();