diff options
Diffstat (limited to 'Userland/Libraries/LibLine/Editor.cpp')
-rw-r--r-- | Userland/Libraries/LibLine/Editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibLine/Editor.cpp b/Userland/Libraries/LibLine/Editor.cpp index 02ae0f2496..3863131c10 100644 --- a/Userland/Libraries/LibLine/Editor.cpp +++ b/Userland/Libraries/LibLine/Editor.cpp @@ -40,7 +40,7 @@ namespace Line { Configuration Configuration::from_config(StringView libname) { Configuration configuration; - auto config_file = Core::ConfigFile::open_for_lib(libname); + auto config_file = Core::ConfigFile::open_for_lib(libname).release_value_but_fixme_should_propagate_errors(); // Read behavior options. auto refresh = config_file->read_entry("behavior", "refresh", "lazy"); |