Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 2f11536

Browse files
committed
fix:fix dio interceptor return value
1 parent e63d57c commit 2f11536

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

‎lib/api/qiniu_api.dart‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,6 @@ class QiniuInterceptor extends InterceptorsWrapper {
174174
'Authorization': 'QBox $accessToken',
175175
});
176176
}
177-
return options;
177+
return handler.next(options);
178178
}
179179
}

‎lib/api/tcyun_api.dart‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,6 @@ class TcyunInterceptor extends InterceptorsWrapper {
169169
headers.addAll({'Authorization': realSign});
170170
options.headers = headers;
171171
}
172-
return options;
172+
return handler.next(options);
173173
}
174174
}

‎lib/api/upyun_api.dart‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,6 @@ class UpyunInterceptor extends InterceptorsWrapper {
9393
'Authorization': 'UPYUN $operator:$realAuth',
9494
});
9595
}
96-
return options;
96+
return handler.next(options);
9797
}
9898
}

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /