mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 15:32:46 +00:00 
			
		
		
		
	Ladybird+Userland: Use ByteString for candidate server paths
We've adopted a stance that paths should be ByteStrings rather than UTF-8 strings, so apply that to the Ladybird helpers.
This commit is contained in:
		
							parent
							
								
									1e0dd9aa8c
								
							
						
					
					
						commit
						0a55749a39
					
				
					 10 changed files with 30 additions and 31 deletions
				
			
		|  | @ -19,7 +19,7 @@ ErrorOr<NonnullRefPtr<Database>> Database::create() | |||
| 
 | ||||
| #if !defined(AK_OS_SERENITY) | ||||
| 
 | ||||
| ErrorOr<NonnullRefPtr<Database>> Database::create(Vector<String> candidate_sql_server_paths) | ||||
| ErrorOr<NonnullRefPtr<Database>> Database::create(Vector<ByteString> candidate_sql_server_paths) | ||||
| { | ||||
|     auto sql_client = TRY(SQL::SQLClient::launch_server_and_create_client(move(candidate_sql_server_paths))); | ||||
|     return create(move(sql_client)); | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Andrew Kaster
						Andrew Kaster