aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/bun.js/api/server.zig2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bun.js/api/server.zig b/src/bun.js/api/server.zig
index 9b7cef701..4662ad0bc 100644
--- a/src/bun.js/api/server.zig
+++ b/src/bun.js/api/server.zig
@@ -2550,6 +2550,8 @@ fn NewRequestContext(comptime ssl_enabled: bool, comptime debug_mode: bool, comp
content
else if (this.blob.wasString())
MimeType.text
+ // TODO: should we get the mime type off of the Blob.Store if it exists?
+ // A little wary of doing this right now due to causing some breaking change
else
MimeType.other;
};