LibCore+Everywhere: Return ErrorOr from ConfigFile factory methods

I've attempted to handle the errors gracefully where it was clear how to
do so, and simple, but a lot of this was just adding
`release_value_but_fixme_should_propagate_errors()` in places.
This commit is contained in:
Sam Atkins 2022-02-06 13:33:42 +00:00 committed by Tim Flynn
commit 8260135d4d
Notes: sideshowbarker 2024-07-17 18:39:11 +09:00
31 changed files with 77 additions and 51 deletions

View file

@ -43,7 +43,7 @@ void AppFile::for_each(Function<void(NonnullRefPtr<AppFile>)> callback, StringVi
}
AppFile::AppFile(StringView path)
: m_config(Core::ConfigFile::open(path))
: m_config(Core::ConfigFile::open(path).release_value_but_fixme_should_propagate_errors())
, m_valid(validate())
{
}