Skip to content

Commit

Permalink
msg.finished is only finished if socket has been detached
Browse files Browse the repository at this point in the history
  • Loading branch information
ronag committed Jun 24, 2019
1 parent 08345db commit c5a5131
Show file tree
Hide file tree
Showing 2 changed files with 1,529 additions and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ function isFinished (msg) {

if (typeof msg.finished === 'boolean') {
// OutgoingMessage
return Boolean(msg.finished || (socket && !socket.writable))
return Boolean((!socket && msg.finished && msg.outputSize === 0) || (socket && !socket.writable) || (msg.stream && msg.stream.closed))
}

if (typeof msg.complete === 'boolean') {
Expand Down
Loading

0 comments on commit c5a5131

Please sign in to comment.