diff options
-rw-r--r-- | Userland/Services/RequestServer/ConnectionCache.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Services/RequestServer/ConnectionCache.cpp b/Userland/Services/RequestServer/ConnectionCache.cpp index 6582ad2059..fc5aea4c43 100644 --- a/Userland/Services/RequestServer/ConnectionCache.cpp +++ b/Userland/Services/RequestServer/ConnectionCache.cpp @@ -64,6 +64,7 @@ void request_did_finish(URL const& url, Core::Stream::Socket const* socket) connection->timer.start(); connection->current_url = url; connection->job_data = connection->request_queue.take_first(); + connection->socket->set_notifications_enabled(true); connection->job_data.start(*connection->socket); }); } |