Skip to content

Commit 9da3b71

Browse files
committed
支持去掉队列
1 parent 1d05f7a commit 9da3b71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/task.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ var originApiMap = {};
44
var transferToTaskMethod = function (apiMap, apiName) {
55
originApiMap[apiName] = apiMap[apiName];
66
apiMap[apiName] = function (params, callback) {
7-
if (params.SkipTask) {
7+
if (params.SkipTask || !this.options.UploadQueueSize) {
88
originApiMap[apiName].call(this, params, callback);
99
} else {
1010
this._addTask(apiName, params, callback);

0 commit comments

Comments
 (0)