summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibTLS/Socket.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibTLS/Socket.cpp')
-rw-r--r--Userland/Libraries/LibTLS/Socket.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibTLS/Socket.cpp b/Userland/Libraries/LibTLS/Socket.cpp
index 1cffd09f04..a5ce52f865 100644
--- a/Userland/Libraries/LibTLS/Socket.cpp
+++ b/Userland/Libraries/LibTLS/Socket.cpp
@@ -144,7 +144,7 @@ void TLSv12::setup_connection()
// Extend the timer, we are too slow.
m_handshake_timeout_timer->restart(m_max_wait_time_for_handshake_in_seconds * 1000);
}
- });
+ }).release_value_but_fixme_should_propagate_errors();
auto packet = build_hello();
write_packet(packet);
write_into_socket();