Skip to content

Commit

Permalink
Fix compilation error issues (ZLMediaKit#3412)
Browse files Browse the repository at this point in the history
  • Loading branch information
ljx0305 authored Mar 26, 2024
1 parent 3e13e69 commit 861be27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/WebApi.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1918,7 +1918,7 @@ void installWebApi() {

api_regist("/index/api/stack/start", [](API_ARGS_JSON_ASYNC) {
CHECK_SECRET();
auto ret = VideoStackManager::Instance().startVideoStack(allArgs.getArgs());
auto ret = VideoStackManager::Instance().startVideoStack(allArgs.args());
val["code"] = ret;
val["msg"] = ret ? "failed" : "success";
invoker(200, headerOut, val.toStyledString());
Expand Down

0 comments on commit 861be27

Please sign in to comment.