From 29fe4a5de5c29be3a2fae0db3cf53d45fe4c7cda Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 10 May 2021 12:37:27 +0200 Subject: [PATCH] RequestServer: Make the certificate_requested IPC call asynchronous It was already being used asynchronously inside RequestServer anyway. --- Userland/Services/RequestServer/RequestClient.ipc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Services/RequestServer/RequestClient.ipc b/Userland/Services/RequestServer/RequestClient.ipc index c86267f301..01d712f5a2 100644 --- a/Userland/Services/RequestServer/RequestClient.ipc +++ b/Userland/Services/RequestServer/RequestClient.ipc @@ -5,5 +5,5 @@ endpoint RequestClient headers_became_available(i32 request_id, IPC::Dictionary response_headers, Optional status_code) =| // Certificate requests - certificate_requested(i32 request_id) => () + certificate_requested(i32 request_id) =| }