WebServer: Make ErrorOr unwrapping more idiomatic

This still not propagates errors properly, but is at least (more)
consistent with the codebase.
This commit is contained in:
Maciej 2022-01-03 09:28:53 +01:00 committed by Andreas Kling
parent 022b416570
commit e824a2da90
Notes: sideshowbarker 2024-07-17 21:45:51 +09:00
2 changed files with 6 additions and 7 deletions

View File

@ -226,9 +226,8 @@ static String folder_image_data()
{
static String cache;
if (cache.is_empty()) {
auto file_or_error = Core::MappedFile::map("/res/icons/16x16/filetype-folder.png");
VERIFY(!file_or_error.is_error());
cache = encode_base64(file_or_error.value()->bytes());
auto file = Core::MappedFile::map("/res/icons/16x16/filetype-folder.png").release_value_but_fixme_should_propagate_errors();
cache = encode_base64(file->bytes());
}
return cache;
}
@ -237,9 +236,8 @@ static String file_image_data()
{
static String cache;
if (cache.is_empty()) {
auto file_or_error = Core::MappedFile::map("/res/icons/16x16/filetype-unknown.png");
VERIFY(!file_or_error.is_error());
cache = encode_base64(file_or_error.value()->bytes());
auto file = Core::MappedFile::map("/res/icons/16x16/filetype-unknown.png").release_value_but_fixme_should_propagate_errors();
cache = encode_base64(file->bytes());
}
return cache;
}

View File

@ -84,7 +84,8 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
return;
}
VERIFY(!maybe_buffered_socket.value().set_blocking(true).is_error());
// FIXME: Propagate errors
MUST(maybe_buffered_socket.value().set_blocking(true));
auto client = WebServer::Client::construct(maybe_buffered_socket.release_value(), server);
client->start();
};