Skip to content

Commit 861be27

Browse files
authored
Fix compilation error issues (ZLMediaKit#3412)
1 parent 3e13e69 commit 861be27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/WebApi.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1918,7 +1918,7 @@ void installWebApi() {
19181918

19191919
api_regist("/index/api/stack/start", [](API_ARGS_JSON_ASYNC) {
19201920
CHECK_SECRET();
1921-
auto ret = VideoStackManager::Instance().startVideoStack(allArgs.getArgs());
1921+
auto ret = VideoStackManager::Instance().startVideoStack(allArgs.args());
19221922
val["code"] = ret;
19231923
val["msg"] = ret ? "failed" : "success";
19241924
invoker(200, headerOut, val.toStyledString());

0 commit comments

Comments
 (0)