Fix issue completing uploads that reuse an existing open changeset

(closes #5228)
This commit is contained in:
Bryan Housel
2018-08-16 10:16:33 -04:00
parent 24f09fd6ec
commit a0a54395a7

View File

@@ -552,7 +552,7 @@ export default {
return callback({ message: 'Changeset already inflight', status: -2 }, changeset);
} else if (_changeset.open) { // reuse existing open changeset..
return createdChangeset(null, _changeset.open);
return createdChangeset.call(this, null, _changeset.open);
} else { // Open a new changeset..
var options = {