修复国标级联播放拉流代理空指针异常
parent
3b714f8e2c
commit
4a41de6039
|
@ -97,7 +97,7 @@ public class StreamProxyPlayServiceImpl implements IStreamProxyPlayService {
|
||||||
streamProxy.setEnableMp4(record);
|
streamProxy.setEnableMp4(record);
|
||||||
}
|
}
|
||||||
StreamInfo streamInfo = startProxy(streamProxy);
|
StreamInfo streamInfo = startProxy(streamProxy);
|
||||||
if (streamInfo != null) {
|
if (streamInfo != null && callback != null) {
|
||||||
callback.run(ErrorCode.SUCCESS.getCode(), ErrorCode.SUCCESS.getMsg(), streamInfo);
|
callback.run(ErrorCode.SUCCESS.getCode(), ErrorCode.SUCCESS.getMsg(), streamInfo);
|
||||||
}
|
}
|
||||||
return streamInfo;
|
return streamInfo;
|
||||||
|
|
Loading…
Reference in New Issue