Skip to content

Commit dbc7de2

Browse files
committed
?
1 parent bc17682 commit dbc7de2

File tree

1 file changed

+1
-1
lines changed
  • turbopack/crates/turbopack-dev-server/src

1 file changed

+1
-1
lines changed

turbopack/crates/turbopack-dev-server/src/http.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ pub async fn process_request_with_content_source(
176176

177177
let content = file.content();
178178
// We already have all the bytes in memory
179-
let content = content.to_bytes()?.into_owned();
179+
let content = content.to_bytes().into_owned();
180180
let response = if should_compress {
181181
header_map.insert(CONTENT_ENCODING, HeaderValue::from_static("gzip"));
182182

0 commit comments

Comments
 (0)