diff --git a/Userland/Libraries/LibWeb/HTML/FormControlInfrastructure.cpp b/Userland/Libraries/LibWeb/HTML/FormControlInfrastructure.cpp index 6b95d1cffb..54c539f09f 100644 --- a/Userland/Libraries/LibWeb/HTML/FormControlInfrastructure.cpp +++ b/Userland/Libraries/LibWeb/HTML/FormControlInfrastructure.cpp @@ -270,7 +270,7 @@ ErrorOr serialize_to_multipart_form_data(Vectortype())))); - // FIXME: Serialize the contents of the file. + TRY(builder.try_append(file->bytes())); TRY(builder.try_append("\r\n"sv)); return {}; },