Toggle navigation
Toggle navigation
This project
Loading...
Sign in
flutter_package
/
fluttertpc_get
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
Jason Law
2021-02-20 13:45:15 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
c94820213df51f0c35dfc784263ac8fcd7ddcfff
c9482021
1 parent
00556cbb
Fixed bug when bodyBytes is null
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
lib/get_connect/http/src/http.dart
lib/get_connect/http/src/http.dart
View file @
c948202
...
...
@@ -139,7 +139,7 @@ class GetHttpClient {
url:
uri
,
headers:
headers
,
bodyBytes:
bodyStream
,
contentLength:
bodyBytes
.
length
,
contentLength:
bodyBytes
?.
length
??
0
,
followRedirects:
followRedirects
,
maxRedirects:
maxRedirects
,
decoder:
decoder
,
...
...
Please
register
or
login
to post a comment