diff --git a/Libraries/LibWeb/Fetch/BodyInit.cpp b/Libraries/LibWeb/Fetch/BodyInit.cpp index 8852be066de..b5e6e43af02 100644 --- a/Libraries/LibWeb/Fetch/BodyInit.cpp +++ b/Libraries/LibWeb/Fetch/BodyInit.cpp @@ -135,7 +135,6 @@ WebIDL::ExceptionOr extract_body(JS::Realm& realm, })); // 11. If source is a byte sequence, then set action to a step that returns source and length to source’s length. - // For now, do it synchronously. if (source.has()) { action = [source = MUST(ByteBuffer::copy(source.get()))]() mutable { return move(source);