diff --git a/server/gameserver/roommgr.cc b/server/gameserver/roommgr.cc index 15a0ca00..60dcacba 100644 --- a/server/gameserver/roommgr.cc +++ b/server/gameserver/roommgr.cc @@ -791,5 +791,18 @@ void RoomMgr::SendGetBattleData(std::vector>& join_m if (is_old_version) { cb(result); } - + a8::MutableXObject* url_params = a8::MutableXObject::NewObject(); + HttpProxy::Instance()->HttpGet + ( + a8::XParams(), + [] (a8::XParams& param, a8::XObject& data) + { + }, + [] (a8::XParams& param, const std::string& response) + { + }, + "", + *url_params + ); + delete url_params; }