Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit f51f8fb

Browse files
fix(api): ensure compatability with 0.4.3
There was a change to the default behaviour of the progress flag, so now we are setting it always to false to ensure it works as intended. Closes #323
1 parent 3444812 commit f51f8fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/api/add.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ module.exports = (send) => {
1616

1717
const sendWithTransform = send.withTransform(addToDagNodesTransform)
1818

19-
sendWithTransform('add', null, {}, files, callback)
19+
sendWithTransform('add', null, {progress: false}, files, callback)
2020
})
2121
}

0 commit comments

Comments
 (0)