summaryrefslogtreecommitdiff
path: root/Userland/Applications/Presenter/Presentation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Applications/Presenter/Presentation.cpp')
-rw-r--r--Userland/Applications/Presenter/Presentation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/Presenter/Presentation.cpp b/Userland/Applications/Presenter/Presentation.cpp
index b58944184b..b1d809f908 100644
--- a/Userland/Applications/Presenter/Presentation.cpp
+++ b/Userland/Applications/Presenter/Presentation.cpp
@@ -67,7 +67,7 @@ ErrorOr<NonnullOwnPtr<Presentation>> Presentation::load_from_file(StringView fil
if (file_name.is_empty())
return ENOENT;
auto file = TRY(Core::Stream::File::open_file_or_standard_stream(file_name, Core::Stream::OpenMode::Read));
- auto contents = TRY(file->read_all());
+ auto contents = TRY(file->read_until_eof());
auto content_string = StringView { contents };
auto json = TRY(JsonValue::from_string(content_string));