Skip to content
This repository has been archived by the owner on Oct 30, 2018. It is now read-only.

Commit

Permalink
ensure correct callback type
Browse files Browse the repository at this point in the history
  • Loading branch information
Gordon Hall committed Jun 28, 2016
1 parent 088b7ef commit 4e73fbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/bridgeclient.js
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ BridgeClient.prototype.resolveFileFromPointers = function(pointers, callback) {
queue.push(pointers.shift(), done);
}

muxer.on('drain', _addPointerToInputQueue);
muxer.on('drain', _addPointerToInputQueue.bind(null, null));
async.times(
this._transferConcurrency,
function addInputSource(n, next) {
Expand Down

0 comments on commit 4e73fbc

Please sign in to comment.