Skip to content

Commit 19de40d

Browse files
authored
updated sent upload params (#497)
1 parent 69d8aa7 commit 19de40d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib-es5/utils/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1107,7 +1107,7 @@ function process_request_params(params, options) {
11071107
params = exports.clear_blank(params);
11081108
delete params.timestamp;
11091109
} else if (options.oauth_token || config().oauth_token) {
1110-
params = exports.clear_blank(options);
1110+
params = exports.clear_blank(params);
11111111
} else if (options.signature) {
11121112
params = exports.clear_blank(options);
11131113
} else {

lib/utils/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1018,7 +1018,7 @@ function process_request_params(params, options) {
10181018
params = exports.clear_blank(params);
10191019
delete params.timestamp;
10201020
} else if (options.oauth_token || config().oauth_token) {
1021-
params = exports.clear_blank(options);
1021+
params = exports.clear_blank(params);
10221022
} else if (options.signature) {
10231023
params = exports.clear_blank(options);
10241024
} else {

0 commit comments

Comments
 (0)