1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 15:07:45 +00:00

LibGemini: Propagate OOM errors from GeminiRequest::to_raw_request()

This commit is contained in:
Linus Groh 2023-03-09 14:51:48 +00:00
parent d0ecd81888
commit 077f7d1577
3 changed files with 6 additions and 6 deletions

View file

@ -111,7 +111,7 @@ void Job::flush_received_buffers()
void Job::on_socket_connected()
{
auto raw_request = m_request.to_raw_request();
auto raw_request = m_request.to_raw_request().release_value_but_fixme_should_propagate_errors();
if constexpr (JOB_DEBUG) {
dbgln("Job: raw_request:");