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 fcd6fb3
Showing 1 changed file with 1 addition 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) || (socket && !socket.writable))
}

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

0 comments on commit fcd6fb3

Please sign in to comment.