mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 15:07:45 +00:00
LibIPC+Services: Support URL as a native IPC type
This commit is contained in:
parent
b81b2a85c4
commit
3654710c41
10 changed files with 26 additions and 16 deletions
|
@ -54,7 +54,7 @@ private:
|
|||
bool Launcher::open(const URL& url, const String& handler_name)
|
||||
{
|
||||
auto connection = LaunchServerConnection::construct();
|
||||
return connection->send_sync<Messages::LaunchServer::OpenUrl>(url.to_string(), handler_name)->response();
|
||||
return connection->send_sync<Messages::LaunchServer::OpenURL>(url, handler_name)->response();
|
||||
}
|
||||
|
||||
Vector<String> Launcher::get_handlers_for_url(const URL& url)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue