Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit 1f32d00

Browse files
committed
Set content to null for directories.
1 parent 447b93c commit 1f32d00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tar-stream-to-objects.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ module.exports = function (err, res, send, done) {
1919
ex.on('entry', function (header, stream, next) {
2020
objStream.push({
2121
path: header.name,
22-
content: stream
22+
content: header.type !== 'directory' ? stream : null
2323
})
2424
next()
2525
})

0 commit comments

Comments
 (0)