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

Commit

Permalink
Merge pull request #458 from aleitner/master
Browse files Browse the repository at this point in the history
4.0.0-rc.5
  • Loading branch information
bookchin committed Sep 26, 2016
2 parents 48312c7 + 06cbbf9 commit d07b284
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/bridge-client/index.js
Expand Up @@ -648,7 +648,7 @@ BridgeClient.prototype._shardTransferComplete = function(state, frame, done) {
frame: frame.id,
mimetype: mime.lookup(origFileName),
filename: origFileName
}, function(err) {
}, function(err, file) {
if (err) {
if (retry < 6) {
retry++;
Expand All @@ -657,7 +657,7 @@ BridgeClient.prototype._shardTransferComplete = function(state, frame, done) {

self._logger.error('Uncaught error: %s', err.message);
}
state.callback();
state.callback(err, file);
});
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "storj-lib",
"version": "4.0.0-rc.4",
"version": "4.0.0-rc.5",
"description": "implementation of the storj protocol for node.js and the browser",
"main": "index.js",
"directories": {
Expand Down

0 comments on commit d07b284

Please sign in to comment.