修复空指针异常
parent
4fbc364ab3
commit
7079c73b99
|
@ -587,7 +587,7 @@ public class ZLMHttpHookListener {
|
|||
return ret;
|
||||
}
|
||||
SendRtpItem sendRtpItem = redisCatchStorage.querySendRTPServer(null, null, param.getStream(), null);
|
||||
if ("talk".equals(sendRtpItem.getApp())) {
|
||||
if (sendRtpItem != null && "talk".equals(sendRtpItem.getApp())) {
|
||||
ret.put("close", false);
|
||||
return ret;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue