Connection: set 'ended' property sooner than the next tick

fork
mscdex 11 years ago
parent 5697fb601e
commit 2b78b90dfa

@ -1114,9 +1114,9 @@ Connection.prototype._resUntagged = function(info) {
}
if (toget.length === 0) {
if (msg)
msg.ended = true;
process.nextTick(function() {
if (msg)
msg.ended = true;
msgEmitter.emit('attributes', attrs);
msgEmitter.emit('end');
});

Loading…
Cancel
Save