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
Jonny Borges
2021-02-22 13:32:34 -0300
Browse Files
Options
Browse Files
Download
Plain Diff
Committed by
GitHub
2021-02-22 13:32:34 -0300
Commit
8f723fc13d11c5a049230e58686706fde0286b05
8f723fc1
2 parents
28ef0210
c9482021
Merge pull request #1092 from jasonlaw/master
Fixed bug when bodyBytes is null
Show 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 @
8f723fc
...
...
@@ -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