1
Fork 0
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:
Andreas Kling 2020-06-07 22:54:27 +02:00
parent b81b2a85c4
commit 3654710c41
10 changed files with 26 additions and 16 deletions

View file

@ -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)