mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	core, web_service: Check for error when registering rooms
The `Register()` function can now handle error results and the error will be passed immediately to the Qt frontend, instead of being ignored silently and failing later with a "Room is not registered".
This commit is contained in:
		
							parent
							
								
									81988d96fe
								
							
						
					
					
						commit
						36051204cc
					
				
					 7 changed files with 67 additions and 33 deletions
				
			
		|  | @ -83,9 +83,10 @@ public: | |||
| 
 | ||||
|     /**
 | ||||
|      * Registers the data in the announce service | ||||
|      * @result A global Guid of the room which may be used for verification | ||||
|      * @result The result of the register attempt. When the result code is Success, A global Guid of | ||||
|      * the room which may be used for verification will be in the result's returned_data. | ||||
|      */ | ||||
|     virtual std::string Register() = 0; | ||||
|     virtual Common::WebResult Register() = 0; | ||||
| 
 | ||||
|     /**
 | ||||
|      * Empties the stored players | ||||
|  | @ -121,8 +122,8 @@ public: | |||
|     Common::WebResult Update() override { | ||||
|         return Common::WebResult{Common::WebResult::Code::NoWebservice, "WebService is missing"}; | ||||
|     } | ||||
|     std::string Register() override { | ||||
|         return ""; | ||||
|     Common::WebResult Register() override { | ||||
|         return Common::WebResult{Common::WebResult::Code::NoWebservice, "WebService is missing"}; | ||||
|     } | ||||
|     void ClearPlayers() override {} | ||||
|     RoomList GetRoomList() override { | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue