修复空指针异常

This commit is contained in:
648540858 2024-01-10 16:17:29 +08:00
parent 28e060fd6f
commit c25a99d60b

View File

@ -733,11 +733,7 @@ public class InviteRequestProcessor extends SIPRequestProcessorParent implements
try {
mediaListManager.removedChannelOnlineEventLister(gbStream.getApp(), gbStream.getStream());
responseAck(request, Response.REQUEST_TIMEOUT); // 超时
} catch (SipException e) {
logger.error("未处理的异常 ", e);
} catch (InvalidArgumentException e) {
logger.error("未处理的异常 ", e);
} catch (ParseException e) {
} catch (SipException | InvalidArgumentException | ParseException e) {
logger.error("未处理的异常 ", e);
}
}, userSetting.getPlatformPlayTimeout());