Hi,
I have trobule using 'getRoomsWithProperties' and 'joinRoomWithProperties' match making,
My rooms are created from server with define properties and i calling match making api
std::map<std::string,std::string> props;
props.insert(std::make_pair<string, string>("RoomDefaultAmount", "10"));
AppWarp::Client::getInstance()->getRoomWithProperties(props);
AppWarp::Client::getInstance()->joinRoomWithProperties(props);
When i use room info api with room id direct i get room details with properties.
AppWarp::Client::getInstance()->getLiveRoomInfo("150304384");
what could be issue with api calling ?