We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1db56f0 commit 891b392Copy full SHA for 891b392
1 file changed
src/flow.js
@@ -1486,7 +1486,7 @@
1486
each(query, function (v, k) {
1487
data.append(k, v);
1488
});
1489
- data.append(this.flowObj.opts.fileParameterName, blob, this.fileObj.file.name);
+ if (typeof blob !== "undefined") data.append(this.flowObj.opts.fileParameterName, blob, this.fileObj.file.name);
1490
}
1491
1492
this.xhr.open(method, target, true);
0 commit comments