Skip to content

Commit

Permalink
v2.7.2-luajit: Fixed CI
Browse files Browse the repository at this point in the history
  • Loading branch information
MCJack123 committed Nov 7, 2022
1 parent 8b3c04b commit fc2a7dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apis/http.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -905,7 +905,7 @@ static std::string websocket_success(lua_State *L, void* userp) {

lua_pushstring(L, "receive");
luaL_loadstring(L, websocket_receive);
lua_pushstring(L, ws->url.c_str());
lua_pushstring(L, (*ws)->url.c_str());
lua_pushvalue(L, pos);
lua_pushcclosure(L, websocket_isOpen, 1);
lua_call(L, 2, 1);
Expand Down

0 comments on commit fc2a7dc

Please sign in to comment.