Commit 040c132f by xiongziliang

优化stopSendRtp接口返回值

parent 0878f776
...@@ -837,7 +837,9 @@ void installWebApi() { ...@@ -837,7 +837,9 @@ void installWebApi() {
throw ApiRetException("该媒体流不存在", API::OtherFailed); throw ApiRetException("该媒体流不存在", API::OtherFailed);
} }
val["result"] = src->stopSendRtp(); if (!src->stopSendRtp()) {
throw ApiRetException("尚未开始推流,停止失败", API::OtherFailed);
}
}); });
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论