Skip to content

Commit 7b06f40

Browse files
committed
Fixed params.
1 parent f528eab commit 7b06f40

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

builders.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ Options.prototype.status = function(a, b, c, d) {
157157
this.status2?.call(this, a, b, c, d);
158158
};
159159

160-
Options.prototype.progress = function(){
160+
Options.prototype.progress = function(a, b, c, d) {
161161
this.progress2?.call(this, a, b, c, d);
162162
};
163163

@@ -258,7 +258,7 @@ Options.prototype.callback = Options.prototype.pipe = function(value) {
258258
};
259259
}
260260

261-
self.$callback(self.error.items.length ? self.error : null, value);
261+
self.$callback.call(self, self.error.items.length ? self.error : null, value);
262262
};
263263

264264
Options.prototype.done = function(arg) {
@@ -1405,6 +1405,7 @@ ActionCaller.prototype.exec = function() {
14051405
let type = meta.payload || (action.input ? '+' : '-');
14061406
let $ = self.$;
14071407

1408+
$.name = action.name;
14081409
$.id = action.id;
14091410
$.error = self.error;
14101411
$.controller = self.controller;

0 commit comments

Comments
 (0)