diff --git a/Userland/Libraries/LibTLS/Socket.cpp b/Userland/Libraries/LibTLS/Socket.cpp index 0db37853e4..6b9062d3b9 100644 --- a/Userland/Libraries/LibTLS/Socket.cpp +++ b/Userland/Libraries/LibTLS/Socket.cpp @@ -164,7 +164,7 @@ void TLSv12::read_from_socket() if (!check_connection_state(true)) return; - consume(Core::Socket::read(4096)); + consume(Core::Socket::read(4 * MiB)); // If anything new shows up, tell the client about the event. notify_client_for_app_data();