diff options
author | 2023-04-21 00:52:31 -0700 | |
---|---|---|
committer | 2023-04-21 00:52:31 -0700 | |
commit | ffdac249ae98b413559573f50cebe3c4206c7c22 (patch) | |
tree | d66a574ff274f1b16567bc96802b4cfde7b4eaa0 /src/bun.js/api/server.zig | |
parent | 541d16f8bed5f51a9861419d7273e733dae56549 (diff) | |
download | bun-ffdac249ae98b413559573f50cebe3c4206c7c22.tar.gz bun-ffdac249ae98b413559573f50cebe3c4206c7c22.tar.zst bun-ffdac249ae98b413559573f50cebe3c4206c7c22.zip |
Add comment
Diffstat (limited to 'src/bun.js/api/server.zig')
-rw-r--r-- | src/bun.js/api/server.zig | 2 |
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; }; |