diff --git a/Libraries/LibDesktop/Launcher.cpp b/Libraries/LibDesktop/Launcher.cpp index 74887b86ed..734ade0e57 100644 --- a/Libraries/LibDesktop/Launcher.cpp +++ b/Libraries/LibDesktop/Launcher.cpp @@ -48,13 +48,13 @@ private: : IPC::ServerConnection(*this, "/tmp/portal/launch") { } - virtual void handle(const Messages::LaunchClient::Dummy&) override {} + virtual void handle(const Messages::LaunchClient::Dummy&) override { } }; bool Launcher::open(const URL& url) { auto connection = LaunchServerConnection::construct(); - return connection->send_sync(url.to_string()); + return connection->send_sync(url.to_string())->response(); } }