Commit c25a99d60bef3d3bbd59fee895bd658928fd00db
1 parent
28e060fd
修复空指针异常
Showing
1 changed file
with
1 additions
and
5 deletions
src/main/java/com/genersoft/iot/vmp/gb28181/transmit/event/request/impl/InviteRequestProcessor.java
| ... | ... | @@ -733,11 +733,7 @@ public class InviteRequestProcessor extends SIPRequestProcessorParent implements |
| 733 | 733 | try { |
| 734 | 734 | mediaListManager.removedChannelOnlineEventLister(gbStream.getApp(), gbStream.getStream()); |
| 735 | 735 | responseAck(request, Response.REQUEST_TIMEOUT); // 超时 |
| 736 | - } catch (SipException e) { | |
| 737 | - logger.error("未处理的异常 ", e); | |
| 738 | - } catch (InvalidArgumentException e) { | |
| 739 | - logger.error("未处理的异常 ", e); | |
| 740 | - } catch (ParseException e) { | |
| 736 | + } catch (SipException | InvalidArgumentException | ParseException e) { | |
| 741 | 737 | logger.error("未处理的异常 ", e); |
| 742 | 738 | } |
| 743 | 739 | }, userSetting.getPlatformPlayTimeout()); | ... | ... |