mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	web_service: Change endpoint to /lobby.
				
					
				
			Preparation for shipping.
This commit is contained in:
		
							parent
							
								
									13ec2abbf6
								
							
						
					
					
						commit
						4574bd1e5c
					
				
					 1 changed files with 4 additions and 4 deletions
				
			
		|  | @ -114,12 +114,12 @@ Common::WebResult RoomJson::Update() { | |||
|         return Common::WebResult{Common::WebResult::Code::LibError, "Room is not registered"}; | ||||
|     } | ||||
|     nlohmann::json json{{"players", room.members}}; | ||||
|     return client.PostJson(fmt::format("/lobby2/{}", room_id), json.dump(), false); | ||||
|     return client.PostJson(fmt::format("/lobby/{}", room_id), json.dump(), false); | ||||
| } | ||||
| 
 | ||||
| std::string RoomJson::Register() { | ||||
|     nlohmann::json json = room; | ||||
|     auto reply = client.PostJson("/lobby2", json.dump(), false).returned_data; | ||||
|     auto reply = client.PostJson("/lobby", json.dump(), false).returned_data; | ||||
|     if (reply.empty()) { | ||||
|         return ""; | ||||
|     } | ||||
|  | @ -134,7 +134,7 @@ void RoomJson::ClearPlayers() { | |||
| } | ||||
| 
 | ||||
| AnnounceMultiplayerRoom::RoomList RoomJson::GetRoomList() { | ||||
|     auto reply = client.GetJson("/lobby2", true).returned_data; | ||||
|     auto reply = client.GetJson("/lobby", true).returned_data; | ||||
|     if (reply.empty()) { | ||||
|         return {}; | ||||
|     } | ||||
|  | @ -149,7 +149,7 @@ void RoomJson::Delete() { | |||
|     Common::DetachedTasks::AddTask( | ||||
|         [host{this->host}, username{this->username}, token{this->token}, room_id{this->room_id}]() { | ||||
|             // create a new client here because the this->client might be destroyed.
 | ||||
|             Client{host, username, token}.DeleteJson(fmt::format("/lobby2/{}", room_id), "", false); | ||||
|             Client{host, username, token}.DeleteJson(fmt::format("/lobby/{}", room_id), "", false); | ||||
|         }); | ||||
| } | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue