diff options
Diffstat (limited to 'src/bun.js/webcore/blob.zig')
-rw-r--r-- | src/bun.js/webcore/blob.zig | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/bun.js/webcore/blob.zig b/src/bun.js/webcore/blob.zig index 9e5ad4ec2..c0a865d5d 100644 --- a/src/bun.js/webcore/blob.zig +++ b/src/bun.js/webcore/blob.zig @@ -435,6 +435,7 @@ pub const Blob = struct { }, // .InlineBlob, .InternalBlob, + .Null, .Empty, .Blob, => { @@ -665,6 +666,7 @@ pub const Blob = struct { .Used, .Empty, .Blob, + .Null, => { break :brk response.body.use(); }, @@ -699,6 +701,7 @@ pub const Blob = struct { .Used, .Empty, .Blob, + .Null, => { break :brk request.body.use(); }, |